document.class_those_forms=function(){
inputs=document.getElementsByTagName('input');

for (i=0; i<inputs.length; i++){
	if (inputs[i].type=="submit" || inputs[i].type=="button"){
		old_class=inputs[i].className;
		inputs[i].className="form_button " + old_class;
	}
	if (inputs[i].type=="checkbox" || inputs[i].type=="radio") {
		old_class=inputs[i].className;
		inputs[i].className="form_checkbox " + old_class;
	}
}
}

function min_width(elem_id,new_width){
	elem=document.getElementById(elem_id);
	if(elem.offsetWidth<new_width){
		elem.style.width=new_width+"px";
	}
}


document.loaded= function () {

	document.class_those_forms();
	min_width("main_holder",900);

}