$(function() {
  // for switch showing products
  $("#nav dt:last").css({ border: 0});
  $("#nav dt").hover(function() {
      $("#nav ul").hide();
      $(this).children("ul").show();
      $(this).css({ background: "#E0E9FE"});
    }, function() {
      $(this).children("ul").hide();
      $(this).css({ 'background-color': "transparent", 'color':'#37006F'});
    });
});

