function tab(Nav,on){

onColor="#30476D"
offColor=""

	if(on){
		Nav.style.cursor="hand";
		Nav.style.backgroundColor=onColor;
	}else{
		Nav.style.backgroundColor=offColor;
	}
}