var theSite = "http://" + document.location.host
var theDestination = ""
var theHome = theSite + "/index.htm"
var theCourses = theSite + "/courses.htm"
var theRegester = theSite + "/register.htm"
var theMoreInfo = theSite + "/info.htm"
var theContact =  theSite + "/contact.htm"
var thePhotos =  theSite + "/photos.htm"

function goThere(where)	{
	if (where == "home") {
	document.location.href = theHome
	}

	if (where == "courses") {
	document.location.href = theCourses
	}
	
	if (where == "register") {
	document.location.href = theRegester
	}
	
	if (where == "moreinfo") {
	document.location.href = theMoreInfo
	}
	
	if (where == "contact") {
	document.location.href = theContact
	}

	if (where == "photos") {
	document.location.href = thePhotos
	}
}

