$(document).ready(function(){
	$("#splash").click(function(){
        $(this).fadeOut(500);
    });
	$(window).load(function(e){
		// initial background image is loaded, now try to cache (preload) all other images
		var bgimages = new Array();
		for (var i=0;i<7;i++)
		{
			bgimages[i] = new Image();
			bgimages[i].src = "images/rear"+(i+1)+".jpg";
		}
	});
});
