function cleanInputs() {
	var allInputs = document.getElementsByTagName("input");
	
	for(i = 0; i < allInputs.length; i++){
	    if(allInputs[i].getAttribute('type') == 'image' || allInputs[i].getAttribute('type') == 'radio' || allInputs[i].getAttribute('type') == 'checkbox' ) {
			allInputs[i].style.border = "0px";
			allInputs[i].style.backgroundColor = "#FFFFFF";
		}
	}
}