currentTab = "try_me_tab";

function switchTab(Tab)
{
	window.document.getElementById(currentTab + "_button").style.color = "#e5e5e5";
	window.document.getElementById(currentTab + "_button").style.backgroundColor = "#1a1a1a";
	window.document.getElementById(Tab + "_button").style.color = "#000000";
	window.document.getElementById(Tab + "_button").style.backgroundColor = "#cccccc";
	
	window.document.getElementById(currentTab).style.display = "none";
	window.document.getElementById(Tab).style.display = "block";
	currentTab = Tab;
}