$(document).ready(function(){$("#fixture .next").click(function(){var b=parseInt($("#week").val())+1;var c=parseInt($("#year").val());if(b>52){b=1;c++}$("#week").val(b);$("#year").val(c);$("#fixture_list").load("/fixtures/get",{year:c,week:b},function(){$("#fixture_list").hide().fadeIn("slow");$("#fixture .section-title").html(theweek)});return false});$(".friend-accept").click(function(){var b=$(this).attr("href");$(this).parent().html("accepting friendship...").load(b);return false});$(".friend-decline").click(function(){var b=$(this).attr("href");$(this).parent().html("declining friendship...").load(b);return false});$("#fixture .prev").click(function(){var b=parseInt($("#week").val())-1;var c=parseInt($("#year").val());if(b<1){b=52;c--}$("#week").val(b);$("#year").val(c);$("#fixture_list").load("/fixtures/get",{year:c,week:b},function(){$("#fixture_list").hide().fadeIn("slow");$("#fixture .section-title").html(theweek)});return false});$(".poll form").live("submit",function(){spin_div($(".poll")[0]);$.post($(".poll form").attr("action"),{answer:$(".poll input[name='answer']:checked").val(),authenticity_token:$(".poll input[name='authenticity_token']").val()},function(b){$(".poll").html(b)});return false});function a(){$(".switch").click(function(){spin_div($(".section-top10teams")[0]);$(".section-top10teams").load($(this).attr("href"),function(){a()});return false})}a()});