jQuery(document).ready(function(){
		/* for top navigation */
		jQuery(" #menu ul ").css({display: "none"}); // Opera Fix
		jQuery(" #menu li").hover(function(){
		jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).slideDown(400);
		},function(){
		jQuery(this).find('ul:first').css({visibility: "hidden"});
		});
		

		jQuery(" #menu2 ul ").css({display: "none"}); // Opera Fix
		jQuery(" #menu2 li").hover(function(){
		jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).slideDown(400);
		},function(){
		jQuery(this).find('ul:first').css({visibility: "hidden"});
		});	
		
		
		/*Hide out of stock message*/
		if ( jQuery('.productTable:contains("This product is unavailable or out of stock.")').length > 0 ) {
				 jQuery('.productTable').hide();
			}


		/*Change links URL back*/
		jQuery("a[href*='whispersoftherealheart.worldsecuresystems.com'], a[href^='/'], td.actions:not('a[href^='/']')").each(function(){
			this.href = this.href.replace(/^https:\/\/[\w.]*\.com\.*a*u*/, "http://www.academyofintuition.com");
		});
		
});		 
	

