function GetNav(currentPage){
	//Adjust Path For Nested Pages
	var pathAdjustment;
	if(currentPage.toUpperCase()=="SUB_GALLERY"){
		pathAdjustment="../";
	}else{
		pathAdjustment="";
	}

	//Set Menu Attributes
	var bgColor= "bgDarkBlue";

	//Home
	if(currentPage.toUpperCase()=="HOME"){
		document.write("<img height='30' src='images/nav/navHomeOff.jpg'>");
	}else{
		document.write("<a href='" + pathAdjustment + "index.html'><img  height='30' src='images/nav/navHomeOn.jpg'></a>");
	}

	//John
	if(currentPage.toUpperCase()=="JOHN"){
		document.write("<img height='30' src='images/nav/navJohnOff.jpg'>");
	}else{
		document.write("<a href='" + pathAdjustment + "aboutJohn.html'><img height='30' src='images/nav/navJohnOn.jpg'></a>");
	}

	//Phil
	if(currentPage.toUpperCase()=="PHIL"){
		document.write("<img height='30' src='images/nav/navPhilOff.jpg'>");
	}else{
		document.write("<a href='" + pathAdjustment + "aboutPhil.html'><img height='30' src='images/nav/navPhilOn.jpg'></a>");
	}

	//CDs
	if(currentPage.toUpperCase()=="CDS"){
		document.write("<img height='30' src='images/nav/navCdsOff.jpg'>");
	}else{
		document.write("<a href='" + pathAdjustment + "cds.html'><img height='30' src='images/nav/navCdsOn.jpg'></a>");
	}

	//DVDs
	if(currentPage.toUpperCase()=="DVDS"){
		document.write("<img height='30' src='images/nav/navDvdsOff.jpg'>");
	}else{
		document.write("<a href='" + pathAdjustment + "dvds.html'><img height='30' src='images/nav/navDvdsOn.jpg'></a>");
	}

	//Gallery
	if(currentPage.toUpperCase()=="GALLERY"){
		document.write("<img height='30' src='images/nav/navGalleryOff.jpg'>");
	}else if(currentPage.toUpperCase()=="SUB_GALLERY"){
		document.write("<img height='30' src='images/nav/navGalleryOff.jpg'>");
	}else{
		document.write("<a href='" + pathAdjustment + "gallery.html'><img height='30' src='images/nav/navGalleryOn.jpg'></a>");
	}

	//Contact
	if(currentPage.toUpperCase()=="CONTACT"){
		document.write("<img height='30' src='images/nav/navContactOff.jpg'>");
	}else{
		document.write("<a href='" + pathAdjustment + "contact.html'><img height='30' src='images/nav/navContactOn.jpg'></a>");
	}
}
