// JavaScript Document
	function setMouseOver(objIn) { 
		objIn.style.cursor='pointer'; objIn.style.cursor='hand';
	}
	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+'/home/'; }
	//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_services=document.getElementById('services'); 
	o_mnu_services.onclick=function(){ window.location=root+'/services/'; }
	o_mnu_services.onmouseover = function() { setMouseOver(this); }
	o_mnu_portfolio=document.getElementById('portfolio'); 
	o_mnu_portfolio.onclick=function(){ window.location=root+'/portfolio/'; }
	o_mnu_portfolio.onmouseover = function() { setMouseOver(this); }
	o_mnu_testimonials=document.getElementById('testimonials');
	o_mnu_testimonials.onclick=function(){ window.location=root+'/testimonials/'; }
	o_mnu_testimonials.onmouseover = function() { setMouseOver(this); }
	o_mnu_contact=document.getElementById('contact'); 
	o_mnu_contact.onclick=function(){ window.location=root+'/contact/'; }
	o_mnu_contact.onmouseover = function() { setMouseOver(this); }