dropClub_Change = function(dropClub)
{
	if (dropClub.selectedIndex > 0)
	{
		var clubID = dropClub.options[dropClub.selectedIndex].value;
		document.getElementById("dropPosition").selectedIndex = 0;
		LoadClubInformation("clubID", clubID);
	}
}

dropPosition_Change = function(dropPosition)
{
	if (dropPosition.selectedIndex > 0)
	{
		var careerID = dropPosition.options[dropPosition.selectedIndex].value;
		document.getElementById("dropClub").selectedIndex = 0;
		LoadClubInformation("careerID", careerID);
	}
}


LoadClubInformation = function(type, arg)
{
	$("#careerInformation").html("<img src='" + SITE_URL + "images/loading.gif' alt='' style='margin: 0px 0px 0px 200px' />");
	$("#careerInformation").load(MODULE_URL + "careersData.php", { type: type, arg: arg });
}