	function addPhotoAd()
	{
		var ads = new Array();
		ads[0] = new Array();
		ads[0][0] = "Own the moment! Purchase high quality photos from <em>The Blood-Horse Photo Store</em>.";
		ads[0][1] = "http://pictopia.com/perl/gal?provider_id=368";
		ads[1] = new Array();
		ads[1][0] = "Find the photos you are looking for! Browse, buy, or request photos at the new <em>Blood-Horse Photo Store</em>.";
		ads[1][1] = "http://pictopia.com/perl/gal?provider_id=368";
		ads[2] = new Array();
		ads[2][0] = "Looking for equine-themed books, videos, gifts, and classic photographs? Shop the official bloodhorse.com store - Click Here!";
		ads[2][1] = "http://www.ExclusivelyEquine.com";
		ads[3] = new Array();
		ads[3][0] = "Find equine-themed books, videos, gifts, and more at the official bloodhorse.com store -- Shop Now!"
		ads[3][1] = "http://www.ExclusivelyEquine.com";

		var numberOfVariations = 4;
		var displayIndex = Math.round((numberOfVariations-1)*Math.random());

		document.getElementById('photoTextAdLink').innerHTML = ads[displayIndex][0];
		document.getElementById('photoTextAdLink').href = ads[displayIndex][1];
		document.getElementById('photoTextAdLink').target = "_blank";
	}
	addEvent(window, 'load', addPhotoAd);