$(function(){

//left nav 
var temp=$("#temp").attr("value");
$("#menu a").removeClass("now");
$("#menu a").eq(temp).addClass("now") 

//nav now
var str=window.location.href;
$("dt a").each(function(){
var ahref = $(this).attr("href") 
if(ahref==str)
{$(this).addClass("on");}
});

$("dd a").each(function(){
var ahref = $(this).attr("href") 
if(ahref==str)
{$(this).addClass("on");}
});


  $("#navdl dt:contains('Solar Road Stud')").nextAll().hide();
  $("#navdl dt:contains('LED Safety Vest')").hide();
  $("#navdl dt:contains('Reflective Safety Vest')").hide();
  $("#sliderimg1").scrollimg();
 //$("#navdl").find("dd").eq(2).nextAll().hide(); Safety Vest 

var objdt = $("#nav dt");
var objdd = $("#nav dd");
 
 objdt.hover(function(){
    $(this).next("dd").show();
 },function(){
    $(this).next("dd").hide();
 });
 
 objdd.hover(function(){
   objdt.unbind("hover");
   $(this).show(); 
 },function(){
   $(this).hide(); 
 })



});



