$(document).ready(function(){

    $("ul.mmenu li")
    .bind(
    "mouseenter",function(){
      curmenu = $(this).find("ul");
      curmenu.addClass("show");
curmenu.fadeIn('fast');
    } )
    .bind(
    "mouseleave",function(){
      curmenu = $(this).find("ul");
      curmenu.removeClass("show");
curmenu.fadeOut('fast');
    } )
     ;
/*
     $(".menu_lev2")
    .bind(
    "mouseenter",function(){
      $(this).addClass("show");
$(this).fadeIn('fast');
    } ).bind(
    "mouseleave",function(){
      $(this).removeClass("show");
$(this).fadeOut('fast');
    } );
*/


});
