jQuery.noConflict();
(function($) { 
$(document).ready(function(){
$("#gNavBrandWrap").hover(
        function(){ $("ul", this).show(); },
        function(){ $("ul", this).fadeOut("fast"); }
    );
$("#gNavBrandWrap").hover(
        function(){ $("#globalNavBrand .masterSplit").css("background-position","0 -431px"); },
        function(){ $("#globalNavBrand .masterSplit").css("background-position","0 -418px"); }
    );
    if (document.all) {
        $("#gNavBrandWrap").hoverClass ("sfHover");
    }

});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};

})(jQuery);

