
pic = new Array();

	pic[1]  = "img01"
	pic[2]  = "img02"
	pic[3]  = "img03"
	pic[4]  = "img04"
	pic[5]  = "img05"
	pic[6]  = "img06"
	pic[7]  = "img07"
	pic[8]  = "img08"
	pic[9]  = "img09"
	pic[10]  = "img10"
	pic[11]  = "img11"
	pic[12]  = "img12"

tmbPic = new Array();

	tmbPic[1]  = "img01"
	tmbPic[2]  = "img02"
	tmbPic[3]  = "img03"
	tmbPic[4]  = "img04"
	tmbPic[5]  = "img05"
	tmbPic[6]  = "img06"
	tmbPic[7]  = "img07"
	tmbPic[8]  = "img08"


function hideAll() {
	for (b=1; b < 13; b++){

		document.getElementById(pic[b]).className="hide";
/*
		document.getElementById(pic[1]).className="hide";
		document.getElementById(pic[2]).className="hide";
		document.getElementById(pic[3]).className="hide";
		document.getElementById(pic[4]).className="hide";
		document.getElementById(pic[5]).className="hide";
		document.getElementById(pic[6]).className="hide";
		document.getElementById(pic[7]).className="hide";
*/

		}	
	return;
	}

function showPic(whichPic) {//alert("whichPic is " +whichPic)
		hideAll()
		document.getElementById(pic[whichPic]).className="show";

	}


