$(document).ready(function() {

    $.history.init(getContent);
    $("a[rel=ajax]").click(function(){
        $.history.load(this.href.replace(/^.*#/, ''));
        return false;
    });

});

function getContent(str) {
  $.get('inc/content.inc.php?' + str , function (html) { $('#content').html(html); });
}

function formsubmit(str) {
  $.get('inc/content.inc.php?' + str , function (html) { $('#debug').html(html); });
}

function getPlayers(teamid) {
  alert("teamid");
}

function subMenu(selectObj , leagueid) {
  $.get('inc/get_players.php?leagueid=' + leagueid + '&teamid=' + selectObj.value , function (html) { $('#' + selectObj.id + 'p1').html(html); });
  $.get('inc/get_players.php?leagueid=' + leagueid + '&teamid=' + selectObj.value , function (html) { $('#' + selectObj.id + 'p2').html(html); });
}


