var theLongImages = new Array();
theLongImages[0] = 'trvlaffilatbanner.gif';
theLongImages[1] = 'njbanner.gif';
theLongImages[2] = 'bannerad1areduced.gif';

var theLongImagesUrl = new Array();
theLongImagesUrl[0] = 'http://nurse-recruiter.com/agencytravl.html';
theLongImagesUrl[1] = 'http://www.nursingjobs.com';
theLongImagesUrl[2] = 'http://www.nurse-recruiter.com';

var theTallImages = new Array();
theTallImages[0] = 'tallbannerad1.gif';
theTallImages[1] = 'tallbannerad2.gif';
theTallImages[2] = 'tallbannerad3.gif';

// set up for the Long Images
var p = theLongImages.length;
var preBuffer = new Array();
for (i=0; i<p; i++) {   
	preBuffer[i] = new Image();
	preBuffer[i].src = theLongImages[i];
}

// set up the Tall Images
var q = theTallImages.length;
var preBufferTall = new Array();
for (i=0; i<q; i++) {   
	preBufferTall[i] = new Image();
	preBufferTall[i].src = theTallImages[i];
}

var whichImage = Math.round(Math.random()*(p-1));
var whichImageTall = Math.round(Math.random()*(q-1));

function showLongImage() {
	if (theLongImagesUrl[whichImage] != '') {
		document.write('<a href="'+theLongImagesUrl[whichImage]+'" target="_new"><img src="images/'+theLongImages[whichImage]+'" border="0"></a>');
	}
	else
		document.write('<img src="images/'+theLongImages[whichImage]+'">');
}
//
function showTallImage() {
	document.write('<img src="images/'+theTallImages[whichImageTall]+'">');
}
//

