    function initMenu()
   {
   
      document.getElementById("li1").className="";
	  document.getElementById("li2").className=""; 
	  document.getElementById("li3").className="";
	  document.getElementById("li4").className="";
	  document.getElementById("li5").className="";
	  document.getElementById("li6").className="";
	  document.getElementById("li7").className="";
	  document.getElementById("li8").className="";

   
   }
   
   function  ShowMenu()
   {
   
	  if(document.location.pathname.indexOf("coolcar/")>=0)
	  {
		     document.getElementById("li1").className="newtopcurrent";

	   }
	   else if(document.location.pathname.indexOf("Outdoors/")>=0)
	   {
	   
	          document.getElementById("li2").className="newtopcurrent";
	   }
	   	   else if(document.location.pathname.indexOf("Refit/")>=0)
	   {
	   
	         document.getElementById("li3").className="newtopcurrent";
	   }
	   	   else if(document.location.pathname.indexOf("Hairdressing/")>=0)
	   {
	   
	          document.getElementById("li4").className="newtopcurrent";
	   
	   }
	   	   else if(document.location.pathname.indexOf("Adorn/")>=0)
	   {
	   
	         document.getElementById("li5").className="newtopcurrent";
	   
	   }
	   	   else if(document.location.pathname.indexOf("Wiring/")>=0)
	   {
	   
	         document.getElementById("li6").className="newtopcurrent";
	   }
	   	   else if(document.location.pathname.indexOf("Function/")>=0)
	   {
	   
	         document.getElementById("li7").className="newtopcurrent";
	   
	   }
	   else
	   {
	   
	       document.getElementById("li8").className="newtopcurrent";

	   } 

   
   }
   initMenu();
   ShowMenu();