// JavaScript Document
	function menueover(id) {
		document.getElementById(id).style.backgroundImage = "url('/images/button_hover.gif')";
		
	}
	
	function menueout(id) {
		document.getElementById(id).style.backgroundImage = "url('/images/button.gif')";
		
	}
