/* Home Scripts */

$(document).ready(function(){
	var img = new Image();
	$(img).load(function() {
		$(this).hide();
		$(this).addClass("splashimage");
		$("#splash").append(img);
		$(this).fadeIn(1000, function() {
			$("#overlayindex"). fadeIn(750, function()  {
			
				$("#show1").fadeIn(750, function() {
					$("#show2").fadeIn(750, function() { 
						$("#show3").fadeIn(750, function() {
							$(".text").fadeIn(500);
						});
					});
				});
				
			});
		});
	});
	$(img).attr("src", "images/menu.jpg");
});