(function($) {
    $(document).ready(function(){
        $('*').NavigationDropDown();
    });
       
    $.fn.NavigationDropDown = function() {
        $(".mainlink").hoverIntent({
            sensitivity: 1,
            interval: 10,
            over: function(){
                $(".sublink", this).css("border-top","1px solid #9b0000");
                $(".sublink", this).css("top",($(this).offset().top + 25));
                $(".sublink", this).css("left",($(this).offset().left));
                $(".sublink", this).slideDown("fast");
                $(this).css("background-color","#c20000");
            },
            timeout: 50,
            out: function(){
                $(".sublink", this).slideUp("fast");
                $(this).css("background-color","#ff0000");
            }
        });
    };

}) (jQuery);