// JavaScript Document\
window.onload=function(){
	var rows=document.getElementsByTagName('tr');
	for(var i=0;i<rows.length;i++){
		rows[i].onmouseover=function(){
			this.className='hover';
		}
		rows[i].onmouseout=function(){
			this.className='';
		}
	}
}
