$(document).ready(function() {

    //$('.dropdown').css('left', rangePos.left);

    $('#menu ul li').hover(
        function(){
            $('ul.children', this).show();

        },
        function(){
            $('ul.children', this).hide();
        }
    );

});
