// JavaScript Document

//array initialiseren & preloaden
imageRollOverHolder = new Array ();
imageRollOutHolder = new Array ();
var numImages = 8;
for (i=0; i<=numImages; i++) {
	imageRollOverHolder[i] = new Image ();
	imageRollOutHolder[i] = new Image ();
}
imageRollOverHolder[0].src = "../ga/templates/template3/images/template_white_home_mo.gif"; 	// home
imageRollOutHolder[0].src = "../ga/templates/template3/images/template_white_home.gif";		
imageRollOverHolder[1].src = "../ga/templates/template3/images/template_white_bio_mo.gif";		// statement
imageRollOutHolder[1].src = "../ga/templates/template3/images/template_white_bio.gif";			
imageRollOverHolder[2].src = "../ga/templates/template3/images/template_white_res_mo.gif";// resume
imageRollOutHolder[2].src = "../ga/templates/template3/images/template_white_res.gif";
imageRollOverHolder[3].src = "../ga/templates/template3/images/template_white_upc_mo.gif";// upcoming events
imageRollOutHolder[3].src = "../ga/templates/template3/images/template_white_upc.gif";
imageRollOverHolder[4].src = "../ga/templates/template3/images/template_white_pastev_mo.gif";// past events
imageRollOutHolder[4].src = "../ga/templates/template3/images/template_white_pastev.gif";
imageRollOverHolder[5].src = "../ga/templates/template3/images/template_white_artist_mo.gif";// artist
imageRollOutHolder[5].src = "../ga/templates/template3/images/template_white_artist.gif";
imageRollOverHolder[6].src = "../ga/templates/template3/images/template_white_portf_mo.gif";// portfolio
imageRollOutHolder[6].src = "../ga/templates/template3/images/template_white_portf.gif";
imageRollOverHolder[7].src = "../ga/templates/template3/images/template_white_artw_mo.gif";// artwork for sale
imageRollOutHolder[7].src = "../ga/templates/template3/images/template_white_artw.gif";
imageRollOverHolder[8].src = "../ga/templates/template3/images/template_white_cont_mo.gif";// contact
imageRollOutHolder[8].src = "../ga/templates/template3/images/template_white_cont.gif";


//rollovers & outs
function rollOver (n) {
	document.images["image"+n].src = imageRollOverHolder[n].src;
	return true;
}
function rollOut (n) {
	document.images["image"+n].src = imageRollOutHolder[n].src;
	return true;
}