// jumpmenu.js

// a very simple script to chnage the page when the user selects a different one
// from the dropdown menu.

function jumpMenuGo(goLocation) {
	if((navigator.appName.indexOf('Netscape') == 0)  && (parseInt(navigator.appVersion) < 5)) {
		document.location = "http://www.city.pg.bc.ca/rec_culture/skatepark/construction";
	}
	else {
		document.location = "http://www.city.pg.bc.ca" + goLocation;
	}
}