function overbutton(){
	if(src=event.srcElement)
		if(src.className=="normal"){
			src.className='hover';
		}
}
function outbutton(){
	if(src=event.srcElement)
		if(src.className=="hover"){
			src.className='normal';
		}
}
function clickbutton(){
	if(src=event.srcElement)
		if(src.className=="hover"){
		    	var rows=document.all.button.rows;
				if (rows){
		    	for(j=0;j<rows.length;j++){
		    		var cells=document.all.button.rows[j].cells;
				for (i=0;i<cells.length ;i++ ){
					cells[i].className="normal";
				}
			}
			}
		    	src.className='click';
		}
}

document.onmouseover=overbutton
document.onmouseout=outbutton
//document.onclick=clickbutton