function showContent(){
		backgrounds_loaded++;
		if(backgrounds_loaded < $(".body-background").length)return;
		backgrounds_loaded = 0;
		$("#main_content").show();	
		$(".body-background > img").each(function(){
			if($(this).attr("src") == undefined)return;
			$(this).load(fadeContentIn);
			$(this).attr("src", bgImage[$(this).parent().prevAll().length].src);
		});
}


function fadeContentIn(){
	$(window).resize(waitForResized);
	backgrounds_loaded++;
	if(backgrounds_loaded < $(".body-background").length)return;
	$(".body-background").fadeIn(500, function(){
		$(".content-top").fadeIn(300);
	}); 
}

$(document).ready(function() {
	$(".content-top").hide();
	$(".body-background").hide();

	$(".body-backgrounds").cycle({
	   fx:'scrollHorz',
	   timeout: 8000,
	   speed: 1000
	});	

}); 

