$(function(){
    var mainMenuList = $('div#mainMenu ul li')
    
    mainMenuList.hover(
        function(){
            var oOfset = $(this).offset();
            $(this).find('> ul').css({left: oOfset.left + 'px', top: (oOfset.top + 42) + 'px'}).show(200);
        },
        function(){
            $(this).find('> ul').hide(200);
        }
    )
    
})
