function createQuotationArray(){
	qdir = "http://www.freedomtogroove.com/images/interface/quote/";
	quotes = new Array();
	quotes[0] = qdir + "adam.gif";
	quotes[1] = qdir + "cazart.gif";
	quotes[2] = qdir + "colinjames.gif";
	quotes[3] = qdir + "klas.gif";
	quotes[4] = qdir + "nettwerk.gif";
	quotes[5] = qdir + "quist.gif";
	quotes[6] = qdir + "railway.gif";
	quotes[7] = qdir + "springer.gif";
	quotes[8] = qdir + "terry.gif";
	quotes[9] = qdir + "tonic.gif";
	quotes[10] = qdir + "welkin.gif";
	quotes[11] = qdir + "jw.gif";
	quotes[12] = qdir + "hermit.gif";
	quotes[13] = qdir + "frontside.gif";
	quotes[14] = qdir + "booth.gif";
	quotes[15] = qdir + "tara.gif";
}

function createHeaderArray(){
	hdir = "http://www.freedomtogroove.com/images/interface/top_pics/";
	headers = new Array();
	
	headers[0] = hdir + "top_05.jpg";
	headers[1] = hdir + "top_06.jpg";
	headers[2] = hdir + "top_07.jpg";
	headers[3] = hdir + "top_08.jpg";
	headers[4] = hdir + "top_09.jpg";
	headers[5] = hdir + "top_04.jpg";
	headers[6] = hdir + "top_03.jpg";
	headers[7] = hdir + "top_02.jpg";
	headers[8] = hdir + "top_10.jpg";
	headers[9] = hdir + "top_11.jpg";
	headers[10] = hdir + "top_12.jpg";
	headers[11] = hdir + "top_13.jpg";
	headers[12] = hdir + "top_14.jpg";
}

function randomImg(arrName,imgName){
	var ranNum = Math.round(Math.random() * (arrName.length - 1));
	document.images[imgName].src = arrName[ranNum];
}