Issue with IE and Jquery/PHP load()

Issue with IE and Jquery/PHP load()

Hey guys, new here, but planning on making this a regular place to help me learn Jquery.

I wrote a small script that animates, loads content from a PHP script into a div, then animates again. It works splendidly in firefox, but for some reason, in IE, it won't load fresh content from the PHP file, even if I reload the page. Given that the PHP works fine in Firefox (and I've tried clearing variables in it), I can only assume that I'm doing something wrong. Can you check it over?

Here's my code:
$(document).ready(function() {
   $("#quoteContainer").load("php/randomquote.php");
});

$(document).ready(function() {
   $("#updateQuote").click(function(){
      $("div.extrasContainer").slideUp(function() {
         $("#quoteContainer").load("php/randomquote.php");
      });
      $("div.extrasContainer").slideDown();
   });
});


I realize this looks odd, but another strange quirk is that it won't load the content when I first load the page unless both of the functions are written that way. Maybe if you have a suggestion to clean up the code as well, I could implement it.

Thanks for any and all help you guys can offer. It's most appreciated. The site is here if you want to look http://www.buttzmag.com