var currentTab = "beginners";

function switchCurrentTab( choice )
{
	if ( choice != currentTab )
	{
		switch (choice)
		{
		case "beginners":
			document.getElementById('home-beginners-container').style.display = 'block';
			document.getElementById('home-athletes-container').style.display = 'none';
			document.getElementById('home-families-container').style.display = 'none';
			document.getElementById('home-beginners-tab').style.backgroundPosition = 'left top';
			document.getElementById('home-athletes-tab').style.backgroundPosition = 'left bottom';
			document.getElementById('home-families-tab').style.backgroundPosition = 'left bottom';
			currentTab = "beginners"; 
			break
		case "athletes":
			document.getElementById('home-beginners-container').style.display = 'none';
			document.getElementById('home-athletes-container').style.display = 'block';
			document.getElementById('home-families-container').style.display = 'none';
			document.getElementById('home-beginners-tab').style.backgroundPosition = 'left bottom';
			document.getElementById('home-athletes-tab').style.backgroundPosition = 'left top';
			document.getElementById('home-families-tab').style.backgroundPosition = 'left bottom';
			currentTab = "athletes"; 
			break
		case "families":
			document.getElementById('home-beginners-container').style.display = 'none';
			document.getElementById('home-athletes-container').style.display = 'none';
			document.getElementById('home-families-container').style.display = 'block';
			document.getElementById('home-beginners-tab').style.backgroundPosition = 'left bottom';
			document.getElementById('home-athletes-tab').style.backgroundPosition = 'left bottom';
			document.getElementById('home-families-tab').style.backgroundPosition = 'left top';
			currentTab = "families"; 
			break
		}
	}
}

function WriteFlashTag (url, width, height, bgcolor)
{
    document.write("<object type=\"application/x-shockwave-flash\" data=\"" + url + "\" width=\"" + width + "\" height=\"" + height + "\">");
    document.write("<param name=\"movie\" value=\"" + url + "\" />");
    document.write("<param name=\"quality\" value=\"high\" />");
    document.write("<param name=\"menu\" value=\"false\" />");
    document.write("<param name=\"scale\" value=\"noscale\" />");
    document.write("<param name=\"bgcolor\" value=\"" + bgcolor + "\" />");
    document.write("</object>");
}
