
$(document).ready(function() 
{
      /*$("#content").hide();*/
      
      $("#content").show("fold", {}, 1200, function()
        {
        $("#content").animate({
				backgroundColor: "white"
			  }, 1000);
        }
      ); 
});


