// JavaScript Document


		function buttonOver(button) {
			document.getElementById(button).style.backgroundColor = '#C8B6B2';
		}
		
		function buttonDown(button) {
			document.getElementById(button).style.backgroundColor = '#E5E1A4';
		}
		
		function buttonUp(button) {
			document.getElementById(button).style.backgroundColor = '#C8B6B2';
		}
		
		function buttonOut(button) {
			document.getElementById(button).style.backgroundColor = '#819DBA';
		}
		
		function footerOn(navItem) {
			document.getElementById(navItem).style.backgroundColor = '#819DBA';
		} 
		
		function footerOff(navItem) {
			document.getElementById(navItem).style.backgroundColor = '';
		}