// JavaScript Document
//servedbanners.js

var theImages = new Array()

theImages[0] = 'http://www.santiagosmagic.com/images/general/servedbanners/Santiagobanner_468x60.jpg'
theImages[1] = 'http://www.santiagosmagic.com/images/general/servedbanners/fleacircusbanner_468x80.jpg'
theImages[2] = 'http://www.santiagosmagic.com/images/general/servedbanners/tarotpartylinkbanner.jpg'

var theURLs = new Array()

theURLs[0] = 'http://www.santiagosmagic.com'
theURLs[1] = 'http://www.fleacircusentertainment.com'
theURLs[2] = 'http://www.thetarotparty.com'

var p = theImages.length;
var nMyNum = Math.round(Math.random()*(p-1));

document.write('<div align="center">');
document.write('<a href="'+theURLs[nMyNum]+'" target="_blank">');
document.write('<img src="'+theImages[nMyNum]+'" name="SantiagosBannerExchange" border="0" align="middle"">');
document.write('</a>');
document.write('</div>');
