// JavaScript Document
function changeBG(menuitem, turn, color)	{

	if (turn == 'on') {
		if (color == 'default') {
		color = '#DAF96D'
		}
		//document.getElementById(menuitem).style.fontWeight = 'bold';
		document.getElementById(menuitem).style.background = color;
		document.getElementById(menuitem).style.width = '130px';
	} else {
		if (color == 'default') {
		color = '#7FAFFF'
		}
		//document.getElementById(menuitem).style.fontWeight = 'normal';
		document.getElementById(menuitem).style.background = color;
		document.getElementById(menuitem).style.width = '125px';
	}
	document.getElementById(menuitem).style.cursor = 'hand';
}