


  // Top popup menu
  $(document).ready(function(){
    $("li.lm_item").hover(
      function () {
        $(this).find(".popup_wrap").toggle();
              },
      function () {
        });
      });


  // Top popup menu
  $(document).ready(function(){
    $(".popup_wrap").hover(
      function () {
        $(this).show();
              },
      function () {
        $(".popup_wrap:visible").toggle();
        });
      });


  // Left popup menu
  /*
  $(document).ready(function(){
    $("div.lm_hovered").hover(
      function () {
        $(this).find(".left_popup").show();
              },
      function () {
        $(this).find(".left_popup").hide();
        });
      });
  */

  // Basket stripe
  $(document).ready(function(){
    $(".basket_tab tr:nth-child(even)").addClass("striped");
  });
