// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

//var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

var Images = new Array()
Images[0]="http://www.redtail.org/newsite/images/side_image_1.gif";
Images[1]="http://www.redtail.org/newsite/images/side_image_2.gif";
Images[2]="http://www.redtail.org/newsite/images/side_image_3.gif";
Images[3]="http://www.redtail.org/newsite/images/side_image_4.gif";
Images[4]="http://www.redtail.org/newsite/images/side_image_5.gif";

// ======================================
// Do not change anything below this line - bah don't listen to them
// ======================================
//var Q = Quotation.length;
//var whichQuotation=Math.round(Math.random()*(Q-1));
//random image function
var I = Images.length;
var whichImage=Math.round(Math.random()*(I-1));

function changeImage(){
	//document.write(Quotation[whichQuotation]);
	document.sideImg.src = Images[whichImage];
}



