function setBg(id,mode){
	if (mode){
		document.getElementById(id).style.backgroundColor="#000000";
		document.getElementById(id).style.backgroundImage="url('img/menu_rollover.gif')";		
	}else{
		document.getElementById(id).style.backgroundImage="";
		document.getElementById(id).style.backgroundColor="";
	}
}

function gif_over(src) {
	src.children.tags('IMG')[0].src=src.children.tags('IMG')[0].src.replace('.gif','r.gif');
}
   
function gif_out(src) {
	src.children.tags('IMG')[0].src=src.children.tags('IMG')[0].src.replace('r.gif','.gif');
}