// JavaScript Document
function hcpFormat() {
	var hcp=document.getElementById('hcp').value;

	var regVirgule=new RegExp("[a-zA-Z,?:/;]", "g");
	hcp= hcp.replace(regVirgule, ".");
	var regPositif=new RegExp("[+]", "g");
	hcp= hcp.replace(regPositif, "-");
	var regZero=new RegExp("[.]", "g");
	var tableau=hcp.split(regZero);
	if (isNaN(tableau[1]))
	{
		hcp=hcp+".0";	
	}

	document.getElementById('hcp').value= hcp;
}

$(document).ready(function () {  
	$.ajaxSetup ({
		cache: false
	});
	// Menu leaderboard M/F
	var currentClass = '';
    /* Change image on mouse over for menu level 0 */
    $("#menuLevel0 ul li").hover(
		  function() { currentClass = $("#menuLevel0").attr("class"); $("#menuLevel0").removeClass().addClass(this.id); },
			function() { $("#menuLevel0").removeClass().addClass(currentClass); }
		);
	$("#menuLevel0 ul li").click(
		  function() { currentClass = $("#menuLevel0").attr("class"); $("#menuLevel0").removeClass().addClass(this.id); },
			function() { $("#menuLevel0").removeClass().addClass(currentClass); }
		);


  $("#load_male").click(function() {
	  $.ajaxSetup ({
			cache: false
		});
	$("#leaderboard_box").empty().html("<div class='smallLeaderboard'><table><thead><tr><th>POS</th><th class='player_name_loading'>PLAYER</th><th>HOLE</th><th>TODAY</th><th>PAR</th></tr></thead><tbody></tbody></table><div class='leaderboard_loading'><img src=\"images/originaux/loading.gif\" /><p>Loading</p><p>The men's leaderboard<br />will appear in a few seconds</p></div><table><tbody></tbody><tfoot><tr><td colspan='5'><a class='link_full_leaderboard'>&nbsp;</a></td></tr></tfoot></table></div>");
	$("#leaderboard_box").load("scripts/xhr/leaderboard_male.php");

  });
  
  $("#load_female").click(function() {
	  $.ajaxSetup ({
			cache: false
		});
	$("#leaderboard_box").empty().html("<div class='smallLeaderboard'><table><thead><tr><th>POS</th><th class='player_name_loading'>PLAYER</th><th>HOLE</th><th>TODAY</th><th>PAR</th></tr></thead><tbody></tbody></table><div class='leaderboard_loading'><img src=\"images/originaux/loading.gif\" /><p>Loading</p><p>The ladies' leaderboard<br />will appear in a few seconds</p></div><table><tbody></tbody><tfoot><tr><td colspan='5'><a class='link_full_leaderboard'>&nbsp;</a></td></tr></tfoot></table></div>");
  $("#leaderboard_box").load("scripts/xhr/leaderboard_female.php");

  });
  
  $("#load_news").click(function() {
	  $.ajaxSetup ({
			cache: false
		});
	$("#leaderboard_box").empty().html("<div class='smallLeaderboard'><table><thead><tr><th>POS</th><th class='player_name_loading'>PLAYER</th><th>HOLE</th><th>TODAY</th><th>PAR</th></tr></thead><tbody></tbody></table><div class='leaderboard_loading'><img src=\"images/originaux/loading.gif\" /><p>Loading</p><p>The news<br />will appear in a few seconds</p></div><table><tbody></tbody><tfoot><tr><td colspan='5'><a class='link_full_leaderboard'>&nbsp;</a></td></tr></tfoot></table></div>");
  $("#leaderboard_box").load("scripts/xhr/news.php");

  });

});
