// JavaScript Document

// for managers random focus area content
var homeImgTwo=new Array()
			
	homeImgTwo[0] = "<a href=\"http://www.bintliffsogunquit.com\" target=\"_blank\"><img src=\"../img/ads/bintliffs.gif\" class=\"smallAd\" /></a>";
	homeImgTwo[1] = "<a href=\"http://www.mcperkinscove.com/\" target=\"_blank\"><img src=\"../img/ads/mcperkinscove.gif\" class=\"smallAd\" /></a>";
	homeImgTwo[2] = "<a href=\"http://www.96statestreet.com/\" target=\"_blank\"><img src=\"../img/ads/victory96.gif\" class=\"smallAd\" /></a>";
	
var Q = homeImgTwo.length;
var whichImg=Math.round(Math.random()*(Q-1));
function showHomeImage2()
{
	document.write(homeImgTwo[whichImg]);
}
