// INPUT onmouseover fuer IE6

inputHover = function() {
	var inputElements = document.getElementsByTagName("INPUT");
	for(var i=0; i<inputElements.length; i++) {
		if((inputElements[i].type == "submit") || (inputElements[i].type == "reset") ) {
			inputElements[i].onmouseover=function() {this.className = "hoveron";}			
			inputElements[i].onmouseout=function() {this.className= "hoveroff";}
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", inputHover);
