$(document).ready(function() {
    //Display the Global department list

    

    $('#site-map').hover(function() { 
            $('#ment-deptlst').slideDown('fast');
            if($('#ment-deptlst ul').size() == 0){
                $('#ment-deptlst').load('/common/mentor_theme/nav.html');
            }
    }, function(){});

    $('#ment-deptlst').hover(function() {}, function() {
            $('#ment-deptlst').slideUp('fast');
    }, function(){});

});

