﻿var timer = null;
$(document).ready(function () {
    $("ul.menu_parent li").hover(
        function () {
            clearInterval(timer);
            //$("ul.menu_parent li[id!=" + $(this).attr('id') + "] div.puce").hide();
            $(this).find('div.puce').show();
        },
        function () {
            $(this).find('div.puce').hide();
            //setTimeout("MenuClose('" + $(this).attr('id') + "')", 300);
        }
        );

      $(this).find('ul.secondLevel').hide();
      $("li.LevelParent").hover(
        function () {
            clearInterval(timer);
            //$("ul.menu_parent li[id!=" + $(this).attr('id') + "] div.puce").hide();
            $(this).find('ul.secondLevel').show();
        },
        function () {
            $(this).find('ul.secondLevel').hide();
            //setTimeout("MenuClose('" + $(this).attr('id') + "')", 300);
        }
        );


    })

  




function MenuClose(id) {
    $('li#' + id).find('div.puce').hide();
}
