//jquery
jQuery(document).ready(function() {
	jQuery("#splash_logo").delay(0).fadeIn(2000, function() {
		jQuery("#splash_logo").delay(1500).fadeOut(1000, function() {
			jQuery("#splash_photo").fadeIn(6000);
		});
	})
});
