jQuery.noConflict();
(function($){
	$(function(){
        $('#siteNav>ul>li').hover(
			function(){ 
				$(this).addClass('sfHover');
                /*
				$(this)
					.find('ul')
					.stop()
					.css({'opacity':'','display':'none'})
					.fadeIn(200)
					.queue(function(){
						if ($.browser.msie && $.browser.version.substr(0,1) == '7')
						{
							this.style.removeAttribute('filter');
						}
						$(this).dequeue();
					})
					;
                    */
            },
			function(){ 
				$(this).removeClass('sfHover');
                /*
				$(this)
					.find('ul')
					.stop()
					.fadeOut(200)
					;
                    */
			}
		);
	});

    $(window).load(function(){
        //Wrap sports network text nodes to allow style hooks
        $('#westerndiv .snTeamSchedule .TSN2').contents().eq(2).wrap('<em></em>');
        $('#westerndiv .snMiniStandings .TSN6').contents().eq(2).wrap('<em></em>');
        $('#easterndiv .snTeamSchedule .TSN2').contents().eq(2).wrap('<em></em>');
        $('#easterndiv .snMiniStandings .TSN6').contents().eq(2).wrap('<em></em>');
        
        //Change "Southeastern" to "SEC"
        $('#westerndiv .snMiniStandings .TSN6').contents().eq(0).replaceWith("SEC Standings");
        $('#easterndiv .snMiniStandings .TSN6').contents().eq(0).replaceWith("SEC Standings");
        
        //Add empty row to standings
        $('.snMiniStandings tr').eq(0).after('<tr><td colspan="5">&nbsp;</td></tr>');
    });
})(jQuery);
