

$(document).ready(
    function()
    {      
        var menu = $('#mainMenu');
        
        /*menu.find('.submenu div').hover(
            function() 
            {
                $(this).addClass('hover');
            },
            function() 
            {
                $(this).removeClass('hover');
            }
        );*/
        
        menu.find('.item').click(
            function ()
            {               
                if ($(this).next().is(':visible'))
                {
                    $(this).next().hide();
                }
                else 
                {    
                    $('#mainMenu .submenu').hide();
                    $(this).next().show();
                }
                
                return false;                
            }
        );
    }
);

