function mouseovereffect(){
	var tableh = $(document.body).getElement('table.nameList').getElements('tr');
	tableh.each(function (thr){
		thr.getFirst().addClass('first');
		thr.getLast().addClass('last');
		thr.addEvent('mouseover',function(e){
			e = new Event(e).stop();
			this.className='hoverBg';
		});
		thr.addEvent('mouseout',function(e){
			e = new Event(e).stop();
			this.className="";
		});
		thr.addEvent('click',function(e){
			e = new Event(e).stop();
			window.open(this.getElement('a').getProperty('href'),'_blank');
		});
	});
}

