// JavaScript Document
var oldClass;
function changClass(test,newclass){
	oldClass = test.className;
	test.className = newclass;
}
function restorClass(test,multiClass){
	if(multiClass==null)
		test.className=oldClass;
	else
		test.className=multiClass;
		
}