function renderHeader(selectedPage) {

document.write('<div id="menu"><img src="images/qtmenu_static.jpg" usemap="#menumap" border="0" /></div>');
document.write('<script>');
document.write('var fomenu = new FlashObject("swf/qt_nav.swf?page='+selectedPage+'", "thinker", "780", "200", "6", "#ffffff");');
document.write('fomenu.write("menu");');
document.write('</script>');

document.write('<map name="menumap">');
document.write('<area shape="rect" coords="5,5,170,170" href="home.html">');
document.write('<area shape="rect" coords="102,145,185,170" href="classes.html">');
document.write('<area shape="rect" coords="193,145,400,170" href="workshop.html">');
document.write('<area shape="rect" coords="409,145,492,170" href="action.html">');
document.write('<area shape="rect" coords="504,145,596,170" href="applause.html">');
document.write('<area shape="rect" coords="607,145,657,170" href="bio.html">');
document.write('<area shape="rect" coords="670,145,774,170" href="contact.html">');
document.write('</map>');
}
	
function renderFooter() {}

function frmCheck() {
	frm = document.getElementById("info");
	if((frm.Fname.value == "") || (frm.Lname.value == "") || (frm.email.value == "") || (frm.comment.value == "")) { 
		alert ("All fields are required. Please fill in everything.")
	} else {
		document.getElementById("thankyou").style.display = "block"; //or "none"
		frm.submit();
	}
	
}

function showPhoto(index) {
	eval("document.thumb"+previous+".src='images/thumb.gif'");
	next = (next == caption.length-1) ? 1 : index+1;
	document.viewer.src = "photos/img" + index + ".jpg";
	//document.nofn.value = next + " of " + (caption.length-1);
	previous = index;
	eval("document.thumb"+index+".src='images/thumb_on.gif'");
}

next = 1;
index = 1;
previous = 1;
function initiatePhotos() {

caption = new Array();
caption[1]="Class photo November 2005";
caption[2]="Class photo July 2005";
caption[3]="Gabe shouting";
caption[4]="Funky weather machine";
caption[5]="Group photo March 2005";
caption[6]="Holding up ceiling";
caption[7]="Brush your teeth";
caption[8]= "Great group shot";
caption[9]="2003 Group";
caption[10]="2 Daves plays piano";
caption[11]="Lucky 7";
caption[12]="Funny 9ers";

for(i=1;i<caption.length;i++) {
	if(i==1) {
		document.write("<a href=\"javascript:showPhoto("+i+")\"><img src=\"images/thumb_on.gif\" hspace=\"11\" border=\"0\" name=\"thumb"+i+"\"></a>");
	} else {
	document.write("<a href=\"javascript:showPhoto("+i+")\"><img src=\"images/thumb.gif\" hspace=\"11\" border=\"0\" name=\"thumb"+i+"\"></a>");
	}
}
}


