cur=document.getElementById('topmenu_scr');
var i=0;
while(cur.className!='last'){
	cur=cur.nextSibling;
	while(cur.nodeName!='TD'){
		cur=cur.nextSibling;
		i++;
	}
	if(cur.className!='last'){
		cur.onmouseover=function(){
			this.className='hover';
		}
		cur.onmouseout=function(){
			this.className='';
		}
		cur.onclick=function(){
			window.location=this.getElementsByTagName('a')[0].href;
		}
	}
}
