<!--

  var adImages = new Array("ads/Dominos.jpg", "ads/Dominos.jpg"); 
  var adURL    = new Array("scarletmenus.com/menus.php?R=10&color=on&item=", "scarletmenus.com/menus.php?R=10&color=on&item=");
  var thisAd  = 0;
  var imgCt   = adImages.length;

var loadAd = new Image(550,80); loadAd.src = adImages[1];
function initBanner()
{
	document.write("<img src=\""+adImages[1]+"\" width=550 height=80 border=0 name=\"adBanner\" alt=\"Banner\">");
}

//    cycle the banners
function rotate()
{

  if (document.images) 
  {
    if (document.adBanner.complete)
    {
      thisAd++;
      if (thisAd == imgCt)
      {
        thisAd = 0;
      }
      document.adBanner.src=adImages[thisAd];
    }
    setTimeout("rotate()", 7 * 1000)	
  }
 
}
// ******* end of function  ************

//    cycle the banner links
function newLink()
{

  document.location.href="http://www." + adURL[thisAd];

}
// ******* end of function  ************

//-->