var ads = new Array("http://www.crazyaboutwine.com/guide/images/wines/featuredWines/1.jpg", "http://www.crazyaboutwine.com/guide/images/wines/featuredWines/3.jpg", "http://www.crazyaboutwine.com/guide/images/wines/featuredWines/4.jpg");
var titles = new Array("2004 Estate Grown Chardonnay", "2004 Cabernet Sauvignon", "2003 Santa Cruz Mountain Estate Syrah");
var counter=Math.floor(Math.random()*3);
var anchs = new Array("http://www.roudonsmith.com/", "http://www.mpmwinery.com/wines.htm", "http://zayantevineyards.com/featured.html");

var adcopy = new Array("A complex Chardonnay filled with flinty minerals and acids resulting in a nice grapefruit finish."
, "Soft & silky on the palate, well balanced with oak tannins and dark berry fruit. Good with lamb, pastas, red meats and even spicey foods."
, "The wine has very complex aromas of boysenberries, violets and cedar. Ripe berries and subtle tannins highlight the palate. The rich flavors carry ...");



function putImage() {
  document.write("<center><a name='adlink' href='javascript:getHref()'><img src='" + ads[counter] + "' name='adbanner' border='0'><br><font size='2'><span name='titleSwap' id='titleSwap'>" + titles[counter] + "</span><br><font size='1' face='arial' color='#000000'><span align='left' id='adCopy' name='adCopy'>" + adcopy[counter] + "</span></font></a></center>");
  counter++;
  setTimeout("rotateImage()",10000);
}

function rotateImage() {
  if(counter==ads.length)
    counter=0;
  document.images['adbanner'].src=ads[counter];
  document.getElementById("titleSwap").innerHTML = titles[counter];
  document.getElementById("adCopy").innerHTML = adcopy[counter];
  counter++;
  setTimeout("rotateImage()",10000);
}

function getHref() {
  window.open(anchs[counter-1]);
}

