<!-- JAVASCRIPT FUNCTIONS TO SUPPORT THE PARABLE, PAGING, ETC. -->

var ads = new Array();
ads[0] = "<a href=\"shareWithAFriend.php\"><img src=\"images/share_ad.gif\" /></a>";
ads[1] = "<a href=\"corporatePrograms.php\"><img src=\"images/corporate_ad.gif\" /></a>";
ads[2] = "<a href=\"http://www.cafepress.com/freakinnut\" target=\"_store\"><img src=\"images/store_ad.gif\" /></a>";

	function initializeAdImage() {
		var adImageNode = $("adImage");
		adImageNode.innerHTML = ads[Math.floor(Math.random()*3)];
	}
	
