function menu_over(idd)
{
	src_old=document.getElementById(idd).src;
	pos=src_old.indexOf(".gif");
	prestr=src_old.substring(0,pos);
    this.npic=new Image();
    this.npic.src=prestr+"_.gif";
	document.getElementById(idd).src=this.npic.src;
//	src.children.tags('IMG')[0].src=src.children.tags('IMG')[0].src.replace('.gif','_.gif');
	
}
   
function menu_out(idd) {
	src_old=document.getElementById(idd).src;
	pos=src_old.indexOf("_.gif");
	prestr=src_old.substring(0,pos);
    this.npic=new Image();
    this.npic.src=prestr+".gif";
	document.getElementById(idd).src=this.npic.src;
	//	src.children.tags('IMG')[0].src=src.children.tags('IMG')[0].src.replace('_.gif','.gif');
}
function gif_over(idd)
{
	src_old=document.getElementById(idd).src;
	pos=src_old.indexOf(".gif");
	prestr=src_old.substring(0,pos);
    this.npic=new Image();
    this.npic.src=prestr+"_.gif";
	document.getElementById(idd).src=this.npic.src;
//	src.children.tags('IMG')[0].src=src.children.tags('IMG')[0].src.replace('.gif','_.gif');
	
}
   
function gif_out(idd) {
	src_old=document.getElementById(idd).src;
	pos=src_old.indexOf("_.gif");
	prestr=src_old.substring(0,pos);
    this.npic=new Image();
    this.npic.src=prestr+".gif";
	document.getElementById(idd).src=this.npic.src;
	//	src.children.tags('IMG')[0].src=src.children.tags('IMG')[0].src.replace('_.gif','.gif');
}