function menu1over(id1,id2,id3){
	document.getElementById(id1).innerHTML='<img src=/images/top4.jpg width=4 height=23>';
	document.getElementById(id2).style.background='url(/images/top5.jpg)';
	document.getElementById(id3).innerHTML='<img src=/images/top6.jpg width=4 height=23>';
}

function menu1out(id1,id2,id3){
	document.getElementById(id1).innerHTML='<img src=/images/top1.jpg width=4 height=23>';
	document.getElementById(id2).style.background='url(/images/top2.jpg)';
	document.getElementById(id3).innerHTML='<img src=/images/top3.jpg width=4 height=23>';
}

function menu2over(id){
	document.getElementById(id).style.background='url(/images/menu2.jpg)';
}

function menu2out(id){
	document.getElementById(id).style.background='url(/images/menu1.jpg)';
}

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]; }}
}