$(document).ready(function(){
	$key = $("input[name=key]").val();
});
$(window).load(function() {
	if ($key == "splash") {
			$("#splashPage").fadeIn();
			$('#splashPage').cycle({ 
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			speed: 300,
			timeout:  1500,
			autostop: 1,
			end: function() {    location.href = "index.php?section=home" ;  } 
		});
	} 
});	


	
