function setquant(passedVal1,passedVal2)
{
if(passedVal1.checked == false){
passedVal2.value="";
}
else{
passedVal2.value="1";
	
}
}
function redirectHash(hashName)
{
	location.href = '#'+hashName;	
}
	
window.onhashchange = doThisWhenTheHashChanges;

photoAlbumOpen="No";
audioPlayerOpen="No";

function doThisWhenTheHashChanges(){
	hash=window.location.hash.substring(1);
	if(hash=="Home")openHome();
	if(hash=="Bio")openBio();
	if(hash=="Discography")openDiscography();
	if(hash=="SoloRecordings")openSoloRec();
	if(hash=="GroupRecordings")openGroupRec();
	if(hash=="OtherRecordings")openOtherRec();
	if(hash=="EducationalMaterials")openEducation();
	if(hash=="PhotoAlbum")openPhotoAlbum();
	if(hash=="Videos")openVideos();
	if(hash=="Links")openLinks();
	if(hash=="News")openNews();
	if(hash=="LImage")openLImage();
	if(hash=="OnlineOrders")openOrders();
	if(hash=="Contact")openContact();
	//if(hash=="photos")openPhotoAlbum();
	
	if(photoAlbumOpen=="Yes"){
		$photoAlbum.dialog('close');
	}
	if(audioPlayerOpen=="Yes"){
		$audioPlayer.dialog('close');
	}
	
	
}
function openBio(){
  $("#loadHere").load("bio_frame.html");
   testHideBio();
   clearLinks();
  document.getElementById("navBio").style.fontWeight="Bold";
  document.getElementById("navBio").style.textDecoration="underline";
  redirectHash("Bio");

	}
function openDiscography(){
  testHideBio();
   clearLinks();
	$("#loadHere").load("discography_frame.html");
	 document.getElementById("navDisc").style.fontWeight="Bold";
  document.getElementById("navDisc").style.textDecoration="underline";
    redirectHash("Discography");

	}

function openSoloRec(){
	
  testHideBio();
   clearLinks();
	 $("#loadHere").load("soloRec_frame.html");
	 document.getElementById("navRec").style.fontWeight="Bold";
  document.getElementById("navRec").style.textDecoration="underline";
    redirectHash("SoloRecordings");

	}
function openGroupRec(){
	
 testHideBio();
   clearLinks();
  $("#loadHere").load("groupRec_frame.html");
 document.getElementById("navRec").style.fontWeight="Bold";
  document.getElementById("navRec").style.textDecoration="underline";
      redirectHash("GroupRecordings");

	}
function openOtherRec(){

  testHideBio();
   clearLinks();
	$("#loadHere").load("otherRec_frame.html");
	 document.getElementById("navRec").style.fontWeight="Bold";
  document.getElementById("navRec").style.textDecoration="underline";
  redirectHash("OtherRecordings");

	}
function openEducation(){
  testHideBio();
   clearLinks();
	$("#loadHere").load("education_frame.html");
	 document.getElementById("navEdu").style.fontWeight="Bold";
  document.getElementById("navEdu").style.textDecoration="underline";
        redirectHash("EducationalMaterials");

	}
function openPhotoAlbum(){
  testHideBio();
   clearLinks();
	$("#loadHere").load("photoalbum_frame.php");
	 document.getElementById("navPhoto").style.fontWeight="Bold";
  document.getElementById("navPhoto").style.textDecoration="underline";
   redirectHash("PhotoAlbum");

	}
	
	function openAlbum(Id){
  testHideBio();
   clearLinks();
	$("#loadHere").load("viewPhotos.php?Id="+Id);
	 document.getElementById("navPhoto").style.fontWeight="Bold";
  document.getElementById("navPhoto").style.textDecoration="underline";
   redirectHash("PhotoAlbum_"+Id);

	}
function openVideos(){
	pausePlayer();
  testHideBio();
   clearLinks();
	$("#loadHere").load("videos_frame.php");
	document.getElementById("navVids").style.fontWeight="Bold";
  document.getElementById("navVids").style.textDecoration="underline";
   redirectHash("Videos");

	}
function openLinks(){
  testHideBio();
   clearLinks();
	$("#loadHere").load("links_frame.html");
	document.getElementById("navLinks").style.fontWeight="Bold";
  document.getElementById("navLinks").style.textDecoration="underline";
     redirectHash("Links");

	}
function openNews(){
  testHideBio();
   clearLinks();
	$("#loadHere").load("news_frame.php");
	document.getElementById("navNews").style.fontWeight="Bold";
  document.getElementById("navNews").style.textDecoration="underline";
     redirectHash("News");

	}
function openLImage(){
  testHideBio();
   clearLinks();
	$("#loadHere").load("LImage_frame.php");
	
 document.getElementById("navLImage").style.background="url(images/star.png) no-repeat top center";
  document.getElementById("navLImageLink").style.color="#ffffff";
     redirectHash("LImage");

}
function openSimonGarfunkel(){
 testHideBio();
  clearLinks();
	 $("#loadHere").load("simon-garfunkel_frame.html");
	 document.getElementById("navSG").style.background="url(images/star.png) no-repeat top center";
  document.getElementById("navSGLink").style.color="#ffffff";
     redirectHash("PhotoAlbum");

}
function openOrders(){
  	testHideBio();
	 clearLinks();
	$("#loadHere").load("orders_frame.html");
	 document.getElementById("navStore").style.background="url(images/star.png) no-repeat top center";
  document.getElementById("navStoreLink").style.color="#ffffff";
     redirectHash("OnlineOrders");

}
function openContact(){
	testHideBio();
	 clearLinks();
  $("#loadHere").load("contact_frame.html");
  document.getElementById("navContact").style.background="url(images/star.png) no-repeat top center";
  document.getElementById("navContactLink").style.color="#ffffff";
     redirectHash("Contact");

}
function openHome(){
  $("#loadHere").load("home_frame.html");
  showBio();
  clearLinks();
  document.getElementById("navHome").style.background="url(images/star.png) no-repeat top center";
  document.getElementById("navHomeLink").style.color="#ffffff";
     redirectHash("Home");

}

function clearLinks(){
	document.getElementById("navHome").style.background="none";
  document.getElementById("navHomeLink").style.color="#b1aeb3";
   document.getElementById("navContact").style.background="none";
  document.getElementById("navContactLink").style.color="#b1aeb3";
  
  document.getElementById("navLImage").style.background="none";
  document.getElementById("navLImageLink").style.color="#dfd170";
   document.getElementById("navStore").style.background="none";
  document.getElementById("navStoreLink").style.color="#dfd170";
   //document.getElementById("navSG").style.background="none";
  //document.getElementById("navLinks").style.color="#dfd170";
  
  
   document.getElementById("navBio").style.fontWeight="normal";
  document.getElementById("navBio").style.textDecoration="none";
   document.getElementById("navDisc").style.fontWeight="normal";
  document.getElementById("navDisc").style.textDecoration="none";
   document.getElementById("navRec").style.fontWeight="normal";
  document.getElementById("navRec").style.textDecoration="none";
  document.getElementById("navEdu").style.fontWeight="normal";
  document.getElementById("navEdu").style.textDecoration="none";
   document.getElementById("navPhoto").style.fontWeight="normal";
  document.getElementById("navPhoto").style.textDecoration="none";
   document.getElementById("navVids").style.fontWeight="normal";
  document.getElementById("navVids").style.textDecoration="none";
  document.getElementById("navLinks").style.fontWeight="normal";
  document.getElementById("navLinks").style.textDecoration="none";
   document.getElementById("navNews").style.fontWeight="normal";
  document.getElementById("navNews").style.textDecoration="none";
  
  
}
function testHideBio(){
	
	if(document.getElementById("bioText").style.display=="block" || document.getElementById("bioText").style.display==""){
		document.getElementById("bioText").style.display="none";
	}
}
function showBio(){
		document.getElementById("bioText").style.display="block";
}

