function menu(e, id)
{
	if(e == 'over') {
		document.getElementById(id).style.backgroundColor = '#EEEEEE';
	}
	if(e == 'out') {
		document.getElementById(id).style.backgroundColor = '#FFFFFF';
	}
}