// JavaScript Document
function tabs_animate(px,id) {
	$('#tabs').animate({'marginLeft' : px}, 'fast');
	if(id == 1){
		document.getElementById('leaderboard_stats').style.display = 'none';
		$('#division_standings').delay(400).fadeIn("slow");
	}else{
		document.getElementById('division_standings').style.display = 'none';
		$('#leaderboard_stats').delay(400).fadeIn("slow");
	}	
}
