function callAction (action) {
	document.forms[0].elements["action"].value = action;
	document.forms[0].submit();
	}

function callSite (box) {
	document.forms[0].elements["action"].value = "changeSite";
	document.forms[0].elements["site"].value = box;
	document.forms[0].submit();
	}

function menuIn (element) {
	element.style.background = '#cccccc'; 
	element.style.color = '#222222'; 
	element.style.cursor = 'pointer';
	}

function menuOut (element) {
	element.style.background = 'transparent'; 
	element.style.color = '#cccccc'; 
	}
