var maxCount = 5;
var img1;
var img2;

var adNo1;
var adNo2;

var myAd2 = new Array();


function writeRand(img)
{
	document.write(img)
}

function getRandom(randCount)
{
	return Math.round(Math.random() * randCount);
}

function getSecondRandom(randCount, prevRand)
{
	var rand = Math.round(Math.random() * randCount);
	
	while(rand == prevRand)
	{
		rand = Math.round(Math.random() * randCount);
	}
	
	return rand;
}

myAd2[0] ="<a href='http://www.cooperstownfunpark.com/'><img src='http://www.cooperstownchamber.org/images/hpImages/cooperstown-fun-park.gif' border='0' /></a>";
myAd2[1] ="<a href='http://www.cooperstownstay.com/ChamberAd.4.2009.asp'><img src='http://www.cooperstownchamber.org/images/hpImages/cooperstownstay.jpg' border='0' /></a>";
myAd2[2] ="<a href='http://www.fenimoreartmuseum.org/'><img src='http://www.cooperstownchamber.org/images/hpImages/Fenimore_CoopCh.jpg' border='0' /></a>";
myAd2[3] ="<a href='http://www.innatcooperstown.com/?utm_source=coopchamber&utm_medium=spring09bannerbeta&utm_content=porch%231tripadvisor&utm_campaign=coopchbrbanneradbeta'><img src='http://www.cooperstownchamber.org/images/hpImages/innatcooperstown.png' border='0' /></a>";
myAd2[4] ="<a href='http://www.themeadowlarkinn.com/'><img src='http://www.cooperstownchamber.org/images/hpImages/meadowlark.jpg' border='0' /></a>";
myAd2[5] ="<a href='http://www.farmersmuseum.org/'><img src='http://www.cooperstownchamber.org/images/hpImages/FarmersMuseum_CoopCh407x148.jpg' border='0' /></a>";


adNo1 = getRandom(maxCount);
adNo2 = getSecondRandom(maxCount, adNo1);

img1 = myAd2[adNo1];
img2 = myAd2[adNo2];

