// ajax_user_standings.js v1.0
// copyright 2008
// Easy2play BV

$(document).ready(function() {
	
	// After loading the document for the first time get the default results
	var varMethod = "get";
	var varUrl  = 'inc/functions/ajax_subleagueprofile_standings.php';
	var varSlid = $('#subleagueID').attr('param');		
	var varParam = 'x=0&paramID=1&slid='+varSlid;
	var varContent = "#ajaxcontent";
	var varWait = "#ajaxwait";
	AjaxMainHandler(varMethod, varUrl, varParam, varContent, varWait);

	// On pagination pagenumber clicks call in livequery to trigger the content refresh
	// push the params sorton (time, sprint, mountain) and showstage (general, first, second etc.)
	$('#pagination a').livequery('click', function() {
		var varParam = 'paramID=' + $(this).attr('id') + '&slid=' + $('#subleagueID').attr('param');
		AjaxMainHandler(varMethod, varUrl, varParam, varContent, varWait);
		return false;
	}); 

});
