//need to check where user currently is if home these links work, otherwise need to prefix with "../"
function handleClick(sWhere, sFrom){
	var prefix = "";
	if (sFrom != ""){
		prefix = "../";
	} 
	switch (sWhere){
		case 'home':
			//window.location.href = "home/home.htm";
			window.location.href = prefix + "index.htm";
			break;
		case 'schedule':
			window.location.href = prefix + "schedule/schedule2010.html";
			break;
		case 'chapter':
			window.location.href = prefix + "chapter/chapter.htm";
			break;
		case 'training':
			window.location.href = prefix + "training/training.htm";
			break;
		case 'testing':
			window.location.href = prefix + "testing/testing.htm";
			break;
		case 'sponsors':
			window.location.href = prefix + "sponsors/sponsors.htm";
			break;
		case 'photos':
			window.location.href = prefix + "photos/photos.htm";
			break;
	}
}
