// Redirect the user if they have selected "my team"
function myTeamRedirect() {
	if (getCookie("rydercup_team") == 'US') {
		window.top.location.href = '/2010/usa/';
	} else if (getCookie("rydercup_team") == 'Europe') {
		window.top.location.href = '/2010/europe/';
	}
}

// Display "my team" options
function myTeamDisplay() {
	if (getCookie("rydercup_team") == 'US') {
		var hideTabID	= "div-set";
		var hideTabID2	= "ediv";
		var showTabID	= "adiv";
	} else if (getCookie("rydercup_team") == 'Europe') {
		var hideTabID	= "div-set";
		var hideTabID2	= "adiv";
		var showTabID	= "ediv";
	} else {
		var hideTabID	= "adiv";
		var hideTabID2	= "ediv";
		var showTabID	= "div-set";
	}

	document.getElementById(hideTabID).style.display	= 'none';
	document.getElementById(hideTabID2).style.display	= 'none';
	document.getElementById(showTabID).style.display	= 'block';
}