function lights(status,id)
{
	if(status=='on')
	{
		document.getElementById('menu_'+id).style.backgroundColor="#975c97";
	}
	else
	{
		document.getElementById('menu_'+id).style.backgroundColor="#c8a2c8";
	}
	
}
