// Russell Thompson
// Project: Freelance Site V2
// Page: JavaScript Main Menu for All Pages
// November, 2003
// For Cross Browser Menu System v1.0

// FUNCTION TO CHANGE PAGES WHEN THE TABLE ROWS ARE CLICKED

function goTo(theIt) 
{
	switch(theIt)
	{
		case "home":
			var theURL = "../index.php";
		break;

		case "bio":
			var theURL = "bio.php?section=bio";
		break;

		case "resume":
			var theURL = "resume.php";
		break; 

		case "programs":
			var theURL = "programs.php?program=all";
		break; 

		case "clients":
			var theURL = "client.php?section=list";
		break; 
	}

	window.location.href = theURL;
}

// FUNCTION TO CHANGE PAGES WHEN THE TABLE ROWS ARE CLICKED FROM THE INDEX PAGE

function indexGoTo(theIt) 
{
	switch(theIt)
	{
		case "home":
			var theURL = "index.php";
		break;

		case "bio":
			var theURL = "pages/bio.php?section=bio";
		break;

		case "resume":
			var theURL = "pages/resume.php";
		break; 

		case "programs":
			var theURL = "pages/programs.php?program=all";
		break; 

		case "clients":
			var theURL = "pages/client.php?section=list";
		break; 
	}

	window.location.href = theURL;
}