// JavaScript Document


/*var rotatingImg = new Array();
  // Enter the names of the images below
  rotatingImg[0]="/images/index/sp-ads/afhf-index-ad-1.jpg";
  rotatingImg[1]="/images/index/sp-ads/afhf-index-ad-2.jpg";
  rotatingImg[2]="/images/index/sp-ads/afhf-index-ad-3.jpg";

var newImg = 0;
var totalImg = rotatingImg.length;

function cycleImg() {
  newImg++;
  if (newImg == totalImg) {
    newImg = 0;
  }
  document.rotate.src=rotatingImg[newImg];
  setTimeout("cycleImg()", 5*1000);
}
window.onload=cycleImg;*/


window.onload=banner;




if (document.images) {
ads = new Array(3);
ads[0] = "../images/index/sp-ads/afhf-index-ad-1-new.jpg";
ads[1] = "../images/index/sp-ads/afhf-index-ad-2.jpg";
ads[2] = "../images/index/sp-ads/afhf-index-ad-3.jpg";
ads[3] = "../images/index/sp-ads/afhf-sponsor-harris.jpg";
}

newplace = new Array(3);
newplace[0] = "http://www.eadsnorthamerica.com";
newplace[1] = "http://www.rockwellcollins.com/";
newplace[2] = "http://www.lockheedmartin.com/";
newplace[3] = "http://www.harris.com/";
var timer = null;
var	 counter = 0;

function banner() {
	    timer=setTimeout("banner()", 4000);
		counter++;
		if (counter >= 4)
		counter = 0;
		document.bannerad.src = ads[counter];
}

function gothere() {
		counter2 = counter;
		window.open(newplace[counter2]);
		
}



