$(document).ready(function(){
    $('.hasDropDown').dropDown();
})


$.fn.dropDown = function(){
    $(this).hoverIntent(function(){
        //Over
        $h = $(this).height();
        $('ul', $(this)).css('top', $h + 'px').fadeIn();
    }, function(){
        //Out
        $('ul', $(this)).fadeOut();
    });
}
