

var activeTab = null;


function HoverOn(thisTab)
{
	if (thisTab = thisTab)
	{
		thisTab.style.color = "rgb(0, 153, 255)";
	}
	
}

function HoverOff(thisTab)
{
	if (thisTab != activeTab)
	{
		thisTab.style.color = "rgb(255, 250, 250)";
	}
	if (thisTab = activeTab)
	{
		thisTab.style.color = "rgb(255, 255, 250)";
	}

}

function SetActiveById(id)
{
	activeTab = document.getElementById(id);
	SetActive(activeTab, false);
}


function SetActive(thisTab, loadPage)
{
	if (!thisTab) return true;
	
	if (activeTab)
	{
		activeTab.style.background = "";
	}
	
	thisTab.style.background = "";
	activeTab = thisTab;
	
	if (loadPage)
	{
		top.location = "index.php?page=" + thisTab.id;
	}
	
}


