/***********************************************
* Switch Content script- C Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for legal use. Last updated Mar 23rd, 2004.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
//function getElementbyClass(classname, newclassname){
function reClass(classname, newclassname){
var alltags=document.all? document.all : document.getElementsByTagName("*")
	for (i=0; i<alltags.length; i++){
		if (alltags[i].className==classname) 
			alltags[i].className=newclassname;
	}
}