theImages = new Array();
	theImages[0] = '1.gif';
	theImages[1] = '2.gif';
	theImages[2] = '3.gif';
	theImages[3] = '4.gif';
	theImages[4] = '5.gif';
	theImages[5] = '6.gif';
	theImages[5] = '7.gif';

var j = 0;
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image();
   preBuffer[i].src = theImages[i];
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
	thePic = theImages[whichImage];
	theAlt = "";
	if( thePic == "JimMcAllisterCustomHouse.jpg" ){
		theAlt = " alt='Jim McAllister, Derby Square Tours'";
	}
	//document.write("<img src=\"../images/inside/posters/" + thePic + "\" " + theAlt + ">");
	//document.write("<table cellpadding=0 cellspacing=0 height=266 border=0 background=\"../images/inside/posters/" + thePic + "\">");
	//document.write("<table cellpadding=0 cellspacing=0 border=0 width=169 background='../images/inside/posters/" + thePic + "'>")
	document.write("<table cellpadding=0 cellspacing=0 border=0><tr><td width=\"186\"><img src='../images/inside/posters/" + thePic + "' width=186></td></tr></table>")
}


function openWin(page,name,width,height,scroll,resize){
window.open(page,name,"toolbar=0,location=0,status=0,menubar=0,scrollbars=" + scroll + ",resizable=" + resize + ",top=0,left=0,width=" + width + ",height=" + height)
}
 
