$(document).ready(function()  {	 $('#account_box').hide();	 $('#account_btn').click(  		function(){			$("#account_btn").toggleClass("account_active");    		if ($(this).is('.account_active')) {      		$('#account_box').show();			}    		else {      		$('#account_box').hide();			}  		}	 );	 if (document.title.indexOf("Home") > -1) {		 $("#menuhover li a[href=\"/\"]").addClass("selected")	 }	 	 if (document.location.href.indexOf("shop") > -1 || document.location.href.indexOf("search") > -1 || document.location.href.indexOf("product") > -1 || document.location.href.indexOf("checkout") > -1) {		 $("#menuhover li a[href=\"shop\"]").addClass("selected")	 }	 if (document.location.href.indexOf("gallery") > -1) {		 $("#menuhover li a[href=\"gallery\"]").addClass("selected")	 }	 	 if (document.location.href.indexOf("about") > -1) {		 $("#menuhover li a[href=\"about\"]").addClass("selected")	 }	 	 if (document.location.href.indexOf("contact") > -1) {		 $("#contact_menu_tab").addClass("selected")	 }	 	 if (document.location.href.indexOf("account") > -1) {		 $("#account_btn").addClass("selected");	 }	 	 $("#facebook_like_button").click(function () {		$("#facebook_box").toggle();		$("#facebook_box_gap").toggle();		$("#facebook_button_backer").toggle();	});	 });
