<!--
function markItems()
{
 var tables = getElementsByIdPart("menu_","table");
 for(j=0; j < tables.length; j++ )
 {
 		
		if ( navigator.appName == 'Microsoft Internet Explorer' ) 
		{
			var rows =tables[j].getElementsByTagName("tr")
			for(i=0; i < rows.length; i++ ){
	            // but only for IE, other browsers are handled by :hover in css
	            rows[i].onmouseover = function(){
	                this.className= 'menuover';
	                
	            }
	            rows[i].onmouseout = function() {
	                this.className = "";
	           }
	       	}
  		}
 }		
}	

-->
       

