var nflScorePage=1;var nflScoreSwitchSpeed="slow";function nflScoresStartup(){nflScorePage=1;$("#nflScoreArea_1").show(nflScoreSwitchSpeed);$("#nflScoreLeft").addClass("disab");$("#nflScoreRight").removeClass("disab");$("#nflScoreRight").show()}function nflScoreGoLeft(){var a=$("#nflScoreArea_"+(nflScorePage-1)).html();if(a!=null){$("#nflScoreRight").removeClass("disab");$("#nflScoreArea_"+(nflScorePage)).hide(nflScoreSwitchSpeed);$("#nflScoreArea_"+(nflScorePage-1)).show(nflScoreSwitchSpeed);nflScorePage--;if(nflScorePage==1){$("#nflScoreLeft").addClass("disab")}}}function nflScoreGoRight(){var a=$("#nflScoreArea_"+(nflScorePage+1)).html();if(a!=null){$("#nflScoreLeft").removeClass("disab");$("#nflScoreArea_"+(nflScorePage)).hide(nflScoreSwitchSpeed);$("#nflScoreArea_"+(nflScorePage+1)).show(nflScoreSwitchSpeed);nflScorePage++;if($("#nflScoreArea_"+(nflScorePage+1)).html()==null){$("#nflScoreRight").addClass("disab")}}}jQuery(document).ready(function(){nflScoresStartup()});