// javascript
function replaceSubmit(theform){
	var form = document.getElementById(theform);
	var divs = form.getElementsByTagName('div');
	for (i = 0; i < divs.length; i++){
		if(divs[i].className == "submit"){
			divs[i].innerHTML = "<a href=\"javascript:document."+theform+".submit();\"><img src=\"image/btn_"+theform+".gif\" alt=\""+theform+"\" title=\""+theform+"\"></a>";
		}
	}
}

function init(){
	//replaceSubmit('home-find_machines_form');
}

window.onload = function(){
	init();
}