﻿function InitMenu()
{
    $('#menu div.MenuItem').hover(
        function() {
            $('.containerTop').hide();
            $('.DropDownMenu').hide();
            $('.containerBottom').hide();
            $(this).find('.DropDownMenu').show();
            $(this).find('.containerBottom').show();
            $(this).find('.containerTop').show();
            var divwidth=0;
            divwidth=$(this).find('.DropDownMenu').width();
            $(this).find('.containerBottom').css({ top:$(this).find('.DropDownMenu').height(), width:divwidth });
            $(this).find('.containerTop').css({ width:divwidth });
            $(this).find('.bcenter').css({ width:divwidth-20 });
            $(this).find('.tcenter').css({ width:divwidth-20 });
        }, 
        function() {
            
            $(this).find('.DropDownMenu').hide();
            $(this).find('.containerBottom').hide();
            $(this).find('.containerTop').hide(); 
                      
        }    
    );
    
}