function switchClass(theObject, theClass)
{
	theObject.setAttribute("class", theClass);
	theObject.className = theClass;
}

function switchPage(thePage)
{
	document.location = thePage;
}
