/*jQuery(document).ready(function() {
  jQuery("#content_top").fadeIn('slow', function(event) {
      jQuery("#content_center").fadeIn('slow', function(event) {
						jQuery("#content_bottom").fadeIn('slow');	
      });
  });
}); */

jQuery(document).ready(function(){
  jQuery("#content_top").css('opacity', 0);
  jQuery("#content_center").css('opacity', 0);
  jQuery("#content_bottom").css('opacity', 0);	

  jQuery("#content_top").animate({ opacity: 1 }, 1000, 
		function() {
			jQuery("#content_center").animate({ opacity: 1 }, 1000, 
				function() {
					jQuery("#content_bottom").animate({ opacity: 1 }, 1000);				
				});
		});
});


