


$(document).ready(function(){
	
	$(document).pngFix();
	
	
	// home gallery slideshow
	$("#home-text div.home-properties").each(function(){	
		var indx = $(this).index();
		var speed_rdm = Math.floor(Math.random()*401);
		var delay_rdm = Math.floor(Math.random()*3001);
		var timeout_rdm = Math.floor(Math.random()*1001);
		$(this).delay( 2000+delay_rdm ).cycle({
			speed: speed_rdm+200,
			timeout:2000+timeout_rdm
		});
	});
	
	// header splash image
	var rs=setTimeout("removeSplash()",3000);
	$("h2#splash").click(function(){
		clearTimeout(rs);
		removeSplash();
	});
	
	
});

function removeSplash() {
	$("h2#splash").fadeOut("slow");
	$("div#splash-under").fadeOut("slow");
}
