
jQuery(document).ready(function() {
						   jQuery("#wrapper").animate({
							  opacity: 0
							  },0).animate({
								opacity: 1
							  },1000);
	
	
	
	jQuery("#wrapper").removeClass("hide").addClass("show");
	
	jQuery("#nav a,#sidebar a,#headerSponsor a,#headerLocator a,#importantInformation ul li a,#footer a.terms,#footer a.espanol,#logo h1 a,.sf-menu a,ul.selfAdjustingOverview li a,ul.selfAdjustingMenu li a,#productArt a,.page-id-2 #content a,.page-id-45 .productCleanSimple h3 a,.page-id-45 .productCleanSimpleImage a,.productCleanSimpleshampoodesc h3 a,.CleanSimpleBottlesOverview a,.page-id-5 .entry-content p a,.page-id-5 .post h2 a,#portal ul li a").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		
		jQuery("#wrapper").animate({
								opacity: 0
							  },500, redirectPage);		
		
		
		
	});

	

		
	function redirectPage() {
window.location = linkLocation;

}

	} //functon end
); //ready end



