/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function show_menu(li)
{
    $(li).find('ul:first').fadeIn(700);
}

function hide_menu(li)
{
    $(li).find('ul:first').fadeOut(400);
}

function initMenu(menu){
    $(menu+' ul li').hover(
    function(){
        $(this).find('a:first').addClass('m_lihover');
        show_menu(this);
    },
    function(){
        $(this).find('ul:first').stop(true, true);
        $(this).find('a:first').removeClass('m_lihover');
        
        hide_menu(this);
    });

}





