function LoadPage(which) {

switch(which) {
	case 1: 
		window.location="Index.htm";
		break;
	case 2: 
		window.location="Events.htm";
		break;
	case 3: 
		window.location="Links.htm";
		break;
	case 4: 
		window.location="AboutUs.htm";
		break;
	case 5: 
		window.location="Projects.htm";
		break;
	case 6: 
		window.location="Trails.htm";
		break;
	case 7: 
		window.location="ContactUs.htm";
		break;
	default: window.location="Index.htm";
	}
}
