function rnd() {
	rnd.seed = (rnd.seed*9301+49297) % 233280;
	return rnd.seed/(233280.0);
};
rnd.today = new Date();
rnd.seed = rnd.today.getTime();
function rand(number) {
	return Math.ceil(rnd()*number);
};
function image(src,title,width,height,href) {
	this.src = src;
	this.title = title;
	this.width = width;
	this.height = height;
	this.href = href;
	this.selected = false;
};
function chooseImage(arry) {
	var idx, str = "";
	do {
		idx = rand(arry.length)-1;
	} while(arry[idx].selected == true);
	if(arry[idx].href.length > 0) str = "<a href=\""+arry[idx].href+"\" target=\""+arry[idx].target+"\">";
	str += "<img src=\""+arry[idx].src+"\" alt=\""+arry[idx].title+"\" width=\""+arry[idx].width+"\" height=\""+arry[idx].height+"\" />";
	if(arry[idx].href.length > 0) str += "</a>";
	document.write(str);
	arry[idx].selected = true;
	return true;
};
// syntax: image("src","alt text",height,width, "url");
bandpics1 = new Array();

bandpics1[0] = new image("images/bandpics/dumpstaphunk.jpg","Dumpstaphunk",208,154,"http://www.dumpstaphunk.com/");
bandpics1[1] = new image("images/bandpics/ZachDeputy.jpg","Zach Deputy",208,154,"http://www.zachdeputy.com/");
bandpics1[2] = new image("images/bandpics/Lettuce.jpg","Lettuce",208,154,"http://www.lettucefunk.com/");
bandpics1[3] = new image("images/bandpics/skerik.jpg","Skerik",208,154,"http://www.myspace.com/43304272/");
bandpics1[4] = new image("images/bandpics/SteveKimockCrazyEngine.jpg","Steve Kimock Crazy Engine",208,154,"http://www.kimock.com/");


bandpics2 = new Array();
bandpics2[0] = new image("images/bandpics/DonnaHopkinsBand.jpg","Donna Hopkins Band",208,154,"http://www.donnahopkins.com/");
bandpics2[1] = new image("images/bandpics/TheNewMastersounds.jpg","New Mastersounds",208,154,"http://www.newmastersounds.com/");
bandpics2[2] = new image("images/bandpics/DrClaw.jpg","Dr. Claw",208,154,"#");
bandpics2[3] = new image("images/bandpics/galactic.jpg","Galactic",208,154,"http://www.galacticfunk.com/");
bandpics2[4] = new image("images/bandpics/artist_frenchy.jpg","Frenchy",208,154,"http://www.frenchylive.com/");


bandpics3 = new Array();

bandpics3[0] = new image("images/bandpics/stillwood.jpg","Stillwood",208,154,"http://stillwood.us/");
bandpics3[1] = new image("images/bandpics/thesoularsystem.jpg","The Soular System",208,154,"http://www.thesoularsystem.com/");
bandpics3[2] = new image("images/bandpics/Dubconscious.jpg","Dubconscious",208,154,"http://www.myspace.com/dubconscious");
bandpics3[3] = new image("images/bandpics/pnumatrio.jpg","Pnuma Trio",208,154,"http://www.pnumatrio.com/");
bandpics3[4] = new image("images/bandpics/nathanmoore.jpg","Nathan Moore",208,154,"http://www.nathanmoore.org/");


sponsorAds = new Array();
sponsorAds [0] = new image("images/sponsorpics/DesignFarm.gif","Design Farm",180,60,"http://www.designfarm.com");
sponsorAds [1] = new image("images/sponsorpics/Sweetwater.gif","Sweetwater Brewery",180,60,"http://www.sweetwaterbrew.com");
sponsorAds [2] = new image("images/sponsorpics/HittinTheNote.gif","Hittin the Note",180,60,"http://www.hittinthenote.com");
sponsorAds [3] = new image("images/sponsorpics/Jambase.gif","Jambase.com",180,60,"http://www.jambase.com");
sponsorAds [4] = new image("images/sponsorpics/SOS_logo.gif","Spirit of the Suwannee Music Park",180,60,"http://www.musicliveshere.com");


