window.onload=function(){
var mg=new Image();
mg.src='images/button.jpg';
var mn=document.getElementById('mn');
var ln=mn.getElementsByTagName('li');
for(var i=0;i<5;i++){
ln[i].childNodes[0].onmouseover=function(){
//this.style.backgroundColor='#dddddd';
this.parentNode.style.backgroundImage='url(images/button1.jpg)';
}
ln[i].childNodes[0].onmouseout=function(){
//this.style.backgroundColor='#cccccc';
this.parentNode.style.backgroundImage='url(images/button.jpg)';
  }
 }
}