function createHeader() {
	var headerDiv = '';
	headerDiv += '<div class="headerNav">'+
		'<ul id="headerNavList">'+
			'<li><a href="index.php">Home</a></li>'+
			'<li>|</li>'+
			'<li><a href="display.php?sc=oo&adid=235">About</a></li>'+
			'<li>|</li>'+
			'<li><a href="display.php?sc=oo&adid=196">Contact</a></li>'+
			'<li>|</li>'+
			'<li><a href="display.php?sc=oo&adid=236">Help</a></li>'+
			'<li>|</li>'+
			'<li><a href="lang_select.php">Para Espa&ntilde;ol</a></li>'+
			'<li>|</li>'+
			'<li><a href="sitemap.php">Sitemap</a></li>'+
		'</ul>'+
	'</div>'+
	'<div class="brandingContainer" id="indexBranding">'+
		'<div class="branding"><img src="images/ridewise_logo_hdr.gif" alt="Ridewise - An affiliate of the Somerset County Business Partnership" /></div>'+
	'</div>';
	
	document.getElementById("headerContainer").innerHTML = headerDiv;
	
	var footerDiv = '';
	footerDiv += '<a href="mailto:info@webmagnetix.com?subject=Feedback from RideWise" target="_blank"><img class="webmagnetix" src="images/footerLogo_wm.gif" alt="Designed and developed by web|magnetix" /></a>'+
	'<p style="color: #ffffff;"><em>Ridewise of Raritan Valley</em><br/>'+
	'<a href="mailto:staff@ridewise.org?subject=Website Feedback">staff@ridewise.org</a><br />'+
	'908.704.1011</p>'+
	'<p style="color: #ffffff;" class="copyright">Copyright &copy;2009 Ridewise of Raritan Valley. All rights reserved.</p>';
	
	document.getElementById("footerContainer").innerHTML = footerDiv;
}

function createPage() {
	createHeader();
}

function setStatus(msg) {
	window.status = msg;
	return true;
}

function jump(menu){
  var loc = menu[menu.selectedIndex].value.split("|");
  if(loc.length == 2)
    window.open(loc[1], loc[0]);
}

var GB_ROOT_DIR = "/lib/greybox/";