adImage = new Array();
adLink = new Array();
adAlt = new Array();
currentAd = 0;
/*
adImage.push('top_banner_industry_study_survey.gif');
adLink.push('http://www.dayspaassociation.com/UltimateSurvey/Indistry_Study_2008.htm');
adAlt.push('Industry Study Survey - 2009');
*/
/*
adImage.push('SPACARE_Online_Auction_2008.gif');
adLink.push('http://www.cmarket.com/auction/AuctionHome.action?vhost=spacare');
adAlt.push('SPAcare Online Auction 2009');
*/
adImage.push('Med Spa Assoc banner_0509.jpg');
adLink.push('http://www.medispa-ins.com/');
adAlt.push('Medical Spa Insurance');

function startTopBannerAds()
{
	myAd = document.getElementById('top_banner');
	
	if(currentAd == adImage.length-1)
	{
		currentAd = 0;
	}
	else
	{
		currentAd++;
	}
	myAd.src = '/images/top_banner/' + adImage[currentAd];
	myAd.alt = adAlt[currentAd];
//	myAd.onclick = new Function(window.open(adLink[currentAd],'mywindow','width=800,height=600'));
//	myAd.onclick = new Function(window.open(adLink[currentAd], 'mywindow','width=800,height=600'));
//	myAd.onclick = popWin(adLink[currentAd]);
//	myAd.onclick = popAd;
	
	setTimeout("startTopBannerAds()",4*1200)
}

function popAd()
{
	window.open(adLink[currentAd], 'mywindow','width=800,height=600,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
}