//The following functions preload the images for the header.



function writeBanner() {



	document.write ("<img src = 'images/header.jpg'");

	document.write ("alt = 'Chippewa Valley Symphony'");

	ID = ("ID = 'banner' style = 'border-style:solid;'>");

}



function writePictures() {

	

	var x = Math.floor(Math.random() * 3);

		if (x == 0) {

			document.write("<img src='images/montage1.jpg' alt='picture montage'>");

		} else if (x == 1) {

			document.write("<img src='images/montage2.jpg' alt='picture montage'>");

		} else {

			document.write("<img src='images/montage3.jpg' alt='picture montage'>");

		}

}


