﻿// Hoverfix support for IE6 - add additional CSS class of hover to targeted elements for elements without CSS :hover support in IE6
(function ($) {
    $.fn.hoverFix = function () {
        if (!$.browser.msie || $.browser.version != '6.0') {
            return;
        }
        this.hover(function () {
            $(this).addClass('hover');
        }, function () {
            $(this).removeClass('hover');
        });
    };
})(jQuery);
// End of hoverFix plugin
