var _menu = '';

function menu_over(obj) { _menu = obj.style.color; obj.style.color = '#fa8605'; obj.style.cursor = 'hand'; }
function menu_out(obj) { obj.style.color = _menu; obj.style.cursor = 'pointer'; }

function side_over(obj) { obj.style.backgroundColor = '#ffffff'; obj.style.cursor = 'hand'; }
function side_out(obj) { obj.style.backgroundColor = ''; obj.style.cursor = 'pointer'; }

function side_over2(obj) { obj.style.backgroundColor = '#c9e5f1'; obj.style.cursor = 'hand'; }
function side_out2(obj) { obj.style.backgroundColor = ''; obj.style.cursor = 'pointer'; }

function navigate(www_url) {
	alert(www_url);
	document.location.href = www_url;	
}