// JavaScript Document
function menu_off_on(id,color)
{
	var reg=new RegExp('menu_'+color+'_off.gif','g');

	if(reg.test(document.getElementById('menu_'+id).style.backgroundImage))
	{
		document.getElementById('menu_'+id).style.backgroundImage = "url(/site/images/menu_"+color+"_on.gif)";
		document.getElementById('menu_'+id+'_1').style.display = 'block';
		document.getElementById('menu_'+id+'_2').style.display = 'block';
		document.getElementById('menu_'+id+'_open').value = '1';	
	}
	else
	{
		document.getElementById('menu_'+id).style.backgroundImage = "url(/site/images/menu_"+color+"_off.gif)";
		document.getElementById('menu_'+id+'_1').style.display = 'none';
		document.getElementById('menu_'+id+'_2').style.display = 'none';
		document.getElementById('menu_'+id+'_open').value = '0';
	}
}

