function menuover(id1,id2,id3){
	document.getElementById(id1).innerHTML='<img src=/images/menu1bak.jpg width=5 height=28>';
	document.getElementById(id2).style.background='url(/images/menu2bak.jpg)';
	document.getElementById(id2).style.color='black';
	document.getElementById(id3).innerHTML='<img src=/images/menu3bak.jpg width=5 height=28>';
}

function menuout(id1,id2,id3){
	document.getElementById(id1).innerHTML='<img src=/images/menu1.jpg width=5 height=28>';
	document.getElementById(id2).style.background='url(/images/menu2.jpg)';
	document.getElementById(id2).style.color='white';
	document.getElementById(id3).innerHTML='<img src=/images/menu3.jpg width=5 height=28>';
}

function LoadImage() {
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=LoadImage.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i]; }}
}