// JavaScript Document

function MsOver(obj) {	//this function is only for IExplorer
	if (document.all){	//if the browser supports the all collection		
		obj.className+=" over";		//changing the curent object classname so the over class will take effect 
	}
}
function MsOut(obj) {	//this function is only for IExplorer
	if(document.all){		//if the browser supports the all collection
		obj.className=obj.className.replace(" over", "");		//removing the over from the object class name
	}
}

