siteShowing=0;
var numSites=12;

siteArray = new Array(numSites);
siteArray[1]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=4185\"><IMG SRC=\"/images/ads/book_toughness.gif\" border=\"0\" width=\"100\" height=\"148\" title=\"The New Toughness Training For Sports\"></a>"
siteArray[2]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=4215\"><IMG SRC=\"/images/ads/book_once.jpg\" border=\"0\" width=\"89\" height=\"140\" title=\"Once a Runner\"></a>"
siteArray[3]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=4192\"><IMG SRC=\"/images/ads/book_pre.gif\" border=\"0\" width=\"100\" height=\"155\" title=\"Pre!\"></a>"
siteArray[4]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=4207\"><IMG SRC=\"/images/ads/book_daniels.gif\" border=\"0\" width=\"91\" height=\"140\" title=\"Daniels Running Formula\"></a>"
siteArray[5]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=4193\"><IMG SRC=\"/images/ads/book_quotable.jpg\" border=\"0\" width=\"100\" height=\"122\" title=\"The Quotable Runner\"></a>"
siteArray[6]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=4357\"><IMG SRC=\"/images/ads/book_taboo.jpg\" border=\"0\" width=\"93\" height=\"140\" title=\"Taboo: Why Black Athletes Dominate Sports...\"></a>"
siteArray[7]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=4255\"><IMG SRC=\"/images/ads/without_limits.gif\" border=\"0\" width=\"79\" height=\"140\" title=\"Without Limits (Prefontaine)\"></a>"
siteArray[8]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=4254\"><IMG SRC=\"/images/ads/prefontaine.gif\" border=\"0\" width=\"77\" height=\"140\" title=\"Prefontaine\"></a>"
siteArray[9]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=11121\"><IMG SRC=\"/images/ads/tokyo_olympiad.jpg\" border=\"0\" width=\"80\" height=\"113\" title=\"Tokyo Olympiad - Criterion Collection\"></a>"
siteArray[10]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=4200\"><IMG SRC=\"/images/ads/book_kenyanway.jpg\" border=\"0\" width=\"80\" height=\"121\" title=\"Train Hard, Win Easy: The Kenyan Way\"></a>"
siteArray[11]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=4190\"><IMG SRC=\"/images/ads/book_lore.gif\" border=\"0\" width=\"100\" height=\"151\" title=\"Lore of Running\"></a>"
siteArray[12]="<a target=\"_blank\" href=\"/index.php?do=jump&link_id=4197\"><IMG SRC=\"/images/ads/book_miler.gif\" border=\"0\" width=\"92\" height=\"140\" title=\"  Steve Scott the Miler\"></a>"

function randSites(){
   // Make sure you don't show the same site 2x in a row
  prevSitesShowing = siteShowing;
  while(siteShowing == prevSitesShowing)
    siteShowing = Math.ceil(Math.random() * numSites);
 }
randSites();
document.write(siteArray[siteShowing]);
