// JavaScript Document

jQuery(window).bind("load", function() {
						   
		setTimeout(showpicture,950);
		setTimeout(hidepicture,2000);
		
						   })

function showpicture(){
	//$('#home_animation').toggle(900,'easeOutCubic');
	$('#home_animation').fadeIn(1100,'easeInCubic');
	//$('#home_animation').slideDown(1000,'easeInCubic');
	$('#loadingmessage').css({display:"none"});
}

function hidepicture(){
	$('#theme_pic_home').hide();
}
