<!--
overmdiv=function(the){
the.style.background='#FFFFFF';
the.style.color='red';
}

overndiv=function(the){
the.style.background='#FFFFFF';
the.style.color='red';
}

outmdiv=function(the){
the.style.background='';
}

outndiv=function(the){
the.style.background='';
}

divhover=function(){
 var ulBox = $("ddlist");  
 var list = ulBox.getElementsByTagName("div");  
 for (var i=0; i<list.length; i++) {  
  list[i].onmouseover=function() {  
   this.style.background="#FFFFD2";  
  }  
  list[i].onmouseout=function() {  
   this.style.background="";  
  }  
 }  
	}

-->

