function swapImage() {
	theAd = new Array(
		'<p align="center" class="adtext"><img src="images/carolinatrophy.jpg" width="157" height="58" /><br />109 N. Church St., Suite A<br />Hertford, NC 27944<br />Phone: 252-426-4644<br />FAX: 252-426-4601<br /><a href="mailto:carolinatrophy1@embarqmail.com">carolinatrophy1@embarqmail.com</a><br /><a href="http://www.carolina-trophy.com" title="Carolina Trophy WEB Site" target="_blank">www.carolina-trophy.com</a><hr></p>', 
 		'<p align="center" class="adtext"><img src="images/hertfordbank.jpg" width="147" height="82" /><br />Hertford Savings Bank<br />121 N. Church St<br />P.O. Box 156<br />Hertford, NC 27944<br />Phone: 252-426-5403<br />FAX: 252-426-5279<hr></p>',
 		'<p align="center" class="adtext"><img src="images/circlestables.jpg" width="108" height="100" /><br />Ponies for all Accasions<br />Nancy Schalck<br />Phone: 252-264-2591<br /><a href="http://www.circlesstablesofhertford.com" title="Circle Stables WEB Site" target="_blank">www.circlesstablesofhertford.com</a><hr></p>',
 		'<p align="center" class="adtext"><img src="images/springfieldbb.jpg" width="159" height="141" /><br />Springfield Bed & Breakfast<br />962 S. Edenton Road Street<br />Hertford, NC 27944<br />Phone: 252-426-8471<br /><a href="mailto:springfield@springfieldbb.com">springfield@springfieldbb.com</a><br /><a href="http://www.springfieldbb.com/" title="Springfield Bed & Breakfast WEB Site" target="_blank">www.springfieldbb.com/</a><hr></p>',
 		'<p align="center" class="adtext"><img src="images/pal.jpg" width="161" height="62" /><br />Best Local Art In Town<br />109 N. Church Street<br />Hall of Fame Square<br />Hertford, NC 27944<br />Phone: 252-426-3041<br /><a href="mailto:office@perquimansarts.org">office@perquimansarts.org</a><br /><a href="http://www.perquimansarts.org/" title="Perquimans Arts League" target="_blank">www.perquimansarts.org/</a><hr></p>',
 		'<p align="center" class="adtext"><img src="images/plantation.jpg" width="163" height="54" /><br />Affordable Waterfront Homes<br />1 Plantation Dr<br />Hertford, NC 27944<br />Phone: 800-523-5958<br /><a href="mailto:dave@albemarleplantation.com">dave@albemarleplantation.com</a><br /><a href="http://www.albemarleplantation.com//" title="Albemarle Plantation WEB Site" target="_blank">www.albemarleplantation.com/</a><hr></p>',
 		'<p align="center" class="adtext">Dr. E. Yiping Fang DLLC<br />212 Ainsley Drive<br />Hertford, NC 27944<br />Phone: 252-426-5585<br />Family Denistry, Full Service<br />Same Day Emergency Care<br />New Patients Welcomed<br /><hr></p>')
	jdate = getJulian(today.getDate(),today.getMonth()+1,today.getYear) + ' ';
	var jdatelength = jdate.length;
	var arraylength = theAd.length;
	whichAd = (jdate%arraylength);
	var blankline = "<br><br>";
	var printAd = 1;
	while (printAd <= arraylength) {
		document.write(theAd[whichAd]);
		if (whichAd >= (arraylength - 1)) {
			whichAd = 0;
		}
		else {
			whichAd++;
		}
		printAd++;
	}
}
