I had gone to that page before, but didn't understand it. I did see the word "delay" at some point in my search, and when I went to the "delay" page, I got the answer I needed. Plus, their code made more sense to me.
Code:
$(document).ready(function() {
//set opacity of logo and detail to 0, then slide in and fade up
$("#logo").css({
left: "170px",
opacity: "0"
}).animate({
opacity: 1,
left: "10"
}, 2000 );
//set opacity to 0, delay for 1.2 seconds, then fade up
$("#homeDetail").css({
opacity: "0"
}).delay(1200).animate({
opacity: 1
}, 2000 );
});