feegaros = new Array(34) // Image list
	feegaros[0] = "beach";
	feegaros[1] = "bluehair";
	feegaros[2] = "car";
	feegaros[3] = "corndog";
	feegaros[4] = "couch";
	feegaros[5] = "countyfair";
	feegaros[6] = "cruise";
	feegaros[7] = "dallasairport";
	feegaros[8] = "disneycruise";
	feegaros[9] = "disneycruise2";
	feegaros[10] = "easter";
	feegaros[11] = "hawaiian";
	feegaros[12] = "keegannbandit";
	feegaros[13] = "keegannkara";
	feegaros[14] = "keegannlogan";
	feegaros[15] = "keegannmeower";
	feegaros[16] = "keegzilla";
	feegaros[17] = "marknkeegan";
	feegaros[18] = "mickey";
	feegaros[19] = "mountainkeegan";
	feegaros[20] = "neighborhood";
	feegaros[21] = "robotics";
	feegaros[22] = "tahoe";
	feegaros[23] = "writing";
	feegaros[24] = "TV";
	feegaros[25] = "WTF";
	feegaros[26] = "swing";
	feegaros[27] = "irish";
	feegaros[28] = "2ndeaster";
	feegaros[29] = "easter2";
	feegaros[30] = "keeganhouse";
	feegaros[31] = "keegancasttahoe";
	feegaros[32] = "orlandoairport";
	feegaros[33] = "keegan1999";
	feegaros[34] = "hyattregency";
var thechosenone = Math.floor(Math.random() * feegaros.length);

function feegaro_all(){
	for (y=0;y<feegaros.length;y++){
		document.write("<a href='http://images.keeganfund.org/feegaro/pictures/" + feegaros[y] + ".png'><img src='http://images.keeganfund.org/feegaro/pictures/" + feegaros[y] + ".gif' height=120px border=2px alt='feegaros/pictures/" + feegaros[y] + ".gif'></a> "); // insert random image
	}
}

function feegaro_random(){
	document.write("<a href='http://images.keeganfund.org'><img src='http://images.keeganfund.org/feegaro/pictures/" + feegaros[thechosenone] + ".gif' alt='http://images.keeganfund.org/feegaro/pictures/" + feegaros[thechosenone] + ".gif' id='random-feegaro_image' border=0px></a>")
}

function feegaro_label(){
	document.write("<img id='random-feegaro_title' src='http://images.keeganfund.org/feegaro/label/" + feegaros[thechosenone] + "_caption-B.gif' border=0px align='center'\">")
}

function feegaro_next(){
	thechosenone++
	if (thechosenone == Math.floor(feegaros.length)) {thechosenone = Math.floor(0)}
	var theimage = "http://images.keeganfund.org/feegaro/pictures/" + feegaros[thechosenone] + ".gif"
	document.getElementById('random-feegaro_image').setAttribute('src',theimage)
	var thetitle = "http://images.keeganfund.org/feegaro/label/" + feegaros[thechosenone] + "_caption-B.gif"
	document.getElementById('random-feegaro_label').setAttribute('src',thetitle)
}

function feegaro_previous(){
	if (thechosenone == 0) {thechosenone = Math.floor(feegaros.length)}
	thechosenone--
	var theimage = "http://images.keeganfund.org/feegaro/pictures/" + feegaros[thechosenone] + ".gif"
	document.getElementById('random-feegaro_image').setAttribute('src',theimage)
	var thetitle = "http://images.keeganfund.org/feegaro/label/" + feegaros[thechosenone] + "_caption-B.gif"
	document.getElementById('random-feegaro_label').setAttribute('src',thetitle)
}
