{
	about0 = new Image();
	about0.src = "images/nav_about_off.gif"; 
	about1 = new Image();
	about1.src = "images/nav_about_on.gif";
	quotes0 = new Image();
	quotes0.src = "images/nav_quotes_off.gif"; 
	quotes1 = new Image();
	quotes1.src = "images/nav_quotes_on.gif";
	credits0 = new Image();
	credits0.src = "images/nav_credits_off.gif"; 
	credits1 = new Image();
	credits1.src = "images/nav_credits_on.gif";
	filmmakers0 = new Image();
	filmmakers0.src = "images/nav_filmmakers_off.gif"; 
	filmmakers1 = new Image();
	filmmakers1.src = "images/nav_filmmakers_on.gif";
	qa0 = new Image();
	qa0.src = "images/nav_qa_off.gif"; 
	qa1 = new Image();
	qa1.src = "images/nav_qa_on.gif";
	imgs0 = new Image();
	imgs0.src = "images/nav_images_off.gif"; 
	imgs1 = new Image();
	imgs1.src = "images/nav_images_on.gif";
	songs0 = new Image();
	songs0.src = "images/nav_songs_off.gif"; 
	songs1 = new Image();
	songs1.src = "images/nav_songs_on.gif";
	trailer0 = new Image();
	trailer0.src = "images/nav_trailer_off.gif"; 
	trailer1 = new Image();
	trailer1.src = "images/nav_trailer_on.gif";
	playdates0 = new Image();
	playdates0.src = "images/nav_playdates_off.gif"; 
	playdates1 = new Image();
	playdates1.src = "images/nav_playdates_on.gif";
	contact0 = new Image();
	contact0.src = "images/nav_contact_off.gif"; 
	contact1 = new Image();
	contact1.src = "images/nav_contact_on.gif";
	
	stills0 = new Image();
	stills0.src = "images/stills_off.gif"; 
	stills1 = new Image();
	stills1.src = "images/stills_on.gif";
	continuity0 = new Image();
	continuity0.src = "images/continuity_off.gif"; 
	continuity1 = new Image();
	continuity1.src = "images/continuity_on.gif";
	paintings0 = new Image();
	paintings0.src = "images/paintings_off.gif"; 
	paintings1 = new Image();
	paintings1.src = "images/paintings_on.gif";
	kids0 = new Image();
	kids0.src = "images/kids_off.gif"; 
	kids1 = new Image();
	kids1.src = "images/kids_on.gif";
	
	song10 = new Image();
	song10.src = "images/song1_off.gif"; 
	song11 = new Image();
	song11.src = "images/song1_on.gif";
	song12 = new Image();
	song12.src = "images/song1_select.gif";
	song20 = new Image();
	song20.src = "images/song2_off.gif"; 
	song21 = new Image();
	song21.src = "images/song2_on.gif";
	song22 = new Image();
	song22.src = "images/song2_select.gif";
	song30 = new Image();
	song30.src = "images/song3_off.gif"; 
	song31 = new Image();
	song31.src = "images/song3_on.gif";
	song32 = new Image();
	song32.src = "images/song3_select.gif";
	song40 = new Image();
	song40.src = "images/song4_off.gif"; 
	song41 = new Image();
	song41.src = "images/song4_on.gif";
	song42 = new Image();
	song42.src = "images/song4_select.gif";
	song50 = new Image();
	song50.src = "images/song5_off.gif"; 
	song51 = new Image();
	song51.src = "images/song5_on.gif";
	song52 = new Image();
	song52.src = "images/song5_select.gif";
	song60 = new Image();
	song60.src = "images/song6_off.gif"; 
	song61 = new Image();
	song61.src = "images/song6_on.gif";
	song62 = new Image();
	song62.src = "images/song6_select.gif";
}

function changeImage(imgName,imgState) {
	if (document.images) {
		document.images[imgName].src = eval(imgState + ".src");
	}
}

function selectSong1() {
	if (document.images) {
		document.images['song1'].src = song12.src;
		document.images['song2'].src = song20.src;
		document.images['song3'].src = song30.src;
		document.images['song4'].src = song40.src;
		document.images['song5'].src = song50.src;
		document.images['song6'].src = song60.src;
	}
	if (document.getElementById) {
		document.getElementById('song-title1').style.display = "block";
		document.getElementById('song-title2').style.display = "none";
		document.getElementById('song-title3').style.display = "none";
		document.getElementById('song-title4').style.display = "none";
		document.getElementById('song-title5').style.display = "none";
		document.getElementById('song-title6').style.display = "none";
	}
}

function selectSong2() {
	if (document.images) {
		document.images['song1'].src = song10.src;
		document.images['song2'].src = song22.src;
		document.images['song3'].src = song30.src;
		document.images['song4'].src = song40.src;
		document.images['song5'].src = song50.src;
		document.images['song6'].src = song60.src;
	}
	if (document.getElementById) {
		document.getElementById('song-title1').style.display = "none";
		document.getElementById('song-title2').style.display = "block";
		document.getElementById('song-title3').style.display = "none";
		document.getElementById('song-title4').style.display = "none";
		document.getElementById('song-title5').style.display = "none";
		document.getElementById('song-title6').style.display = "none";
	}
}

function selectSong3() {
	if (document.images) {
		document.images['song1'].src = song10.src;
		document.images['song2'].src = song20.src;
		document.images['song3'].src = song32.src;
		document.images['song4'].src = song40.src;
		document.images['song5'].src = song50.src;
		document.images['song6'].src = song60.src;
	}
	if (document.getElementById) {
		document.getElementById('song-title1').style.display = "none";
		document.getElementById('song-title2').style.display = "none";
		document.getElementById('song-title3').style.display = "block";
		document.getElementById('song-title4').style.display = "none";
		document.getElementById('song-title5').style.display = "none";
		document.getElementById('song-title6').style.display = "none";
	}
}

function selectSong4() {
	if (document.images) {
		document.images['song1'].src = song10.src;
		document.images['song2'].src = song20.src;
		document.images['song3'].src = song30.src;
		document.images['song4'].src = song42.src;
		document.images['song5'].src = song50.src;
		document.images['song6'].src = song60.src;
	}
	if (document.getElementById) {
		document.getElementById('song-title1').style.display = "none";
		document.getElementById('song-title2').style.display = "none";
		document.getElementById('song-title3').style.display = "none";
		document.getElementById('song-title4').style.display = "block";
		document.getElementById('song-title5').style.display = "none";
		document.getElementById('song-title6').style.display = "none";
	}
}

function selectSong5() {
	if (document.images) {
		document.images['song1'].src = song10.src;
		document.images['song2'].src = song20.src;
		document.images['song3'].src = song30.src;
		document.images['song4'].src = song40.src;
		document.images['song5'].src = song52.src;
		document.images['song6'].src = song60.src;
	}
	if (document.getElementById) {
		document.getElementById('song-title1').style.display = "none";
		document.getElementById('song-title2').style.display = "none";
		document.getElementById('song-title3').style.display = "none";
		document.getElementById('song-title4').style.display = "none";
		document.getElementById('song-title5').style.display = "block";
		document.getElementById('song-title6').style.display = "none";
	}
}

function selectSong6() {
	if (document.images) {
		document.images['song1'].src = song10.src;
		document.images['song2'].src = song20.src;
		document.images['song3'].src = song30.src;
		document.images['song4'].src = song40.src;
		document.images['song5'].src = song50.src;
		document.images['song6'].src = song62.src;
	}
	if (document.getElementById) {
		document.getElementById('song-title1').style.display = "none";
		document.getElementById('song-title2').style.display = "none";
		document.getElementById('song-title3').style.display = "none";
		document.getElementById('song-title4').style.display = "none";
		document.getElementById('song-title5').style.display = "none";
		document.getElementById('song-title6').style.display = "block";
	}
}

function songOn(songNum) {
	if (document.images) {
		if (document.images[songNum].src != eval(songNum + "2.src")) {
			document.images[songNum].src = eval(songNum + "1.src");
		}
	}
}

function songOff(songNum) {
	if (document.images) {
		if (document.images[songNum].src != eval(songNum + "2.src")) {
			document.images[songNum].src = eval(songNum + "0.src");
		}
	}
}