function loadRandomAd(id)
{
	var node = document.getElementById(id);
	
	var ads = new Array();
	ads.push(new Array("/content/images/ads/century21.jpg", "http://www.c21clickit.com"));
	ads.push(new Array("/images/adSpaceImages/mrtransmission.jpg", "http://www.mrtransmission.com"));
	ads.push(new Array("http://www.hostgator.com/affiliates/banners/125X300.gif", "http://www.hostgator.com"));
	ads.push(new Array("/images/adSpaceImages/redcross.jpg", "http://www.redcross.org/news/ds/panflu/"));
	ads.push(new Array("/images/adSpaceImages/podcastproduction.jpg", "http://www.radiosandysprings.com/index.php?id=10"));
	ads.push(new Array("/images/adSpaceImages/resourceplanninggroup.jpg", "http://www.rpgplanner.com/"));
	
	var poolSize = ads.length;
	var randIndex = Math.floor(Math.random() * poolSize);
	var selectedAd = ads[randIndex];
	
	node.innerHTML = '<a href="' + selectedAd[1] + '"><img width="150" src="' + selectedAd[0] + '" border="0"/></a>';
}