
var currTab = "news";
/* ----------------------------------------------------------------------------------------------------------------------------	*/
/* whatsNew_selectTab																											*/
/* ----------------------------------------------------------------------------------------------------------------------------	*/
function whatsNew_selectTab (which)
{
	if (currTab != which)
	{
		document.getElementById("whatsNew_tabContent_in").innerHTML = document.getElementById("whatsNew_" + which + "Content").innerHTML;

		document.getElementById("whatsNew_" + which).className   = document.getElementById("whatsNew_" + currTab).className;
		document.getElementById("whatsNew_" + currTab).className = "whatsNew_tab_bg";

		currTab = which;
	}
}
