﻿(function($) {

    $.fn.mainMenu = function() {

        return this.each(function() {
            $(this).children('li').hover(
                function() {
                    $(this).addClass('jsHover');
                },
                function() {
                    $(this).removeClass('jsHover');
                }
            );  
        });

    };
})(jQuery);

