// JavaScript Document
	function setMouseOver(objIn) { 
		objIn.style.cursor='pointer'; //objIn.style.cursor='pointer';
	}
	var root = '';
	//o_mnu_logo=document.getElementById('logo'); 
	//o_mnu_logo.onclick=function(){ window.location=root+'/'; }
	//o_mnu_logo.onmouseover = function() { setMouseOver(this); }
	o_mnu_home=document.getElementById('home'); 
	o_mnu_home.onclick=function(){ window.location=root+'/'; }
	o_mnu_home.onmouseover = function() { setMouseOver(this); }
	o_mnu_about=document.getElementById('about'); 
	o_mnu_about.onclick=function(){ window.location=root+'/about/'; } 
	o_mnu_about.onmouseover = function() { setMouseOver(this); }
	o_mnu_involved=document.getElementById('involved'); 
	o_mnu_involved.onclick=function(){ window.location=root+'/involved/'; }
	o_mnu_involved.onmouseover = function() { setMouseOver(this); }
	o_mnu_endorse=document.getElementById('endorse'); 
	o_mnu_endorse.onclick=function(){ window.location=root+'/endorse/'; }
	o_mnu_endorse.onmouseover = function() { setMouseOver(this); }
	o_mnu_gallery=document.getElementById('gallery'); 
	o_mnu_gallery.onclick=function(){ window.location=root+'/gallery/'; }
	o_mnu_gallery.onmouseover = function() { setMouseOver(this); }
