var anchors = document.getElementsByTagName("input"); 
for (var i=0; i<anchors.length; i++) {
	var anchor = anchors[i];
	if (anchor.getAttribute("type")=="submit"){
		anchor.removeAttribute("style");
		anchor.className="submitbutton";
	}
}