jQuery(function() {   	jQuery('#season').bind('click', getSeason); });jQuery(function() {    // alllows for a few more links to the seasons page with individual id's	jQuery('#season1').bind('click', getSeason); });jQuery(function() {    // alllows for a few more links to the seasons page with individual id's	jQuery('#season2').bind('click', getSeason); });function getSeason(){    var curr_month;    $.get("http://www.allingtons.net.au/getmonth.php", function(data){															    /*    $.get("http://testing.allingtons.net.au/getmonth.php", function(data){																	     */      window.location.href= data;    });       }