
function showRandomImage728x60(){
	var theImages = new Array();
	var theLinks = new Array();

	//edit banners/links here only
	theImages[0] = 'banner1.gif';
	theLinks[0] = 'http://www.wsnsportsfriends.com/';
	theImages[1] = 'smokersrx01.gif';
	theLinks[1] = 'http://www.smokersrx.com/';
	theImages[2] = 'SpeakInc.gif';
	theLinks[2] = 'http://www.speakinc.com';

	var j = 0
	var p = theImages.length;
	var preBuffer = new Array()
	for (i = 0; i < p; i++){
	   preBuffer[i] = new Image()
	   preBuffer[i].src = theImages[i]
	}
	var whichImage = Math.round(Math.random()*(p-1));
	document.write('<a href="'+theLinks[whichImage]+'" target="_blank"><img src="/images/ads/728x60/'+theImages[whichImage]+'" border="0"></a>');
}