// JavaScript Document



var bannerImg = new Array();

  // Enter the names of the images below

  bannerImg[0]="images/abspicrotate.jpg";

  bannerImg[1]="images/aqupicrotate.jpg";

  bannerImg[2]="images/gin6picrotate.jpg";

  bannerImg[3]="images/gin11picrotate.jpg";

  bannerImg[4]="images/vodpicrotate.jpg";
  
  bannerImg[5]="images/solpicrotate.jpg";



var go_url = new Array();

  // Enter the names of the images below

  go_url[0]="absinthe.htm";

  go_url[1]="aquavit.htm";

  go_url[2]="gin6.htm";

  go_url[3]="gin11.htm";

  go_url[4]="vodkapure.htm";
  
  go_url[5]="sol.htm";











var newBanner = -1;

var totalBan = bannerImg.length;



function cycleBan() {

  newBanner++;

  if (newBanner == totalBan) {

    newBanner = 0;

  }

//  document.location.href=go_url[newBanner];

  document.banner.src=bannerImg[newBanner];

  // set the time below for length of image display

  // i.e., "4*1000" is 4 seconds

  setTimeout("cycleBan()", 3*1000);

}

function goto_url()  {

   var golink = "http://northshoredistillery.com/" + go_url[newBanner];

   document.location.href=golink;

} 



window.onload=cycleBan;
