var enabled = true; // set true to enable the ad or false to disable it
//var initial_interval = 0; // 10000 = 10 secs, change the value here if necessary.
var imgs = new Array();
var lnks = new Array();
var intvs = new Array();
var alt = new Array();
var width = new Array();
var height = new Array();
var banner_dir = "/images/banners/";

// create new banner set

// imgs[0] = banner_dir + 'nationals_final.jpg';
// lnks[0] = 'http://www.evolutionoz.net/forums/index.php?showtopic=56112';
// alt[0] = 'EvolutionOz Nationals 2010';
// intvs[0] = 15000;
// width[0] = 469;
// height[0] = 62;

imgs[0] = banner_dir + 'justcarinsuranceevo10_468x60.gif';
lnks[0] = 'http://ad.au.doubleclick.net/clk;226626163;50411946;d';
alt[0] = 'Just Car Insurance';
intvs[0] = 15000;
width[0] = 480;
height[0] = 60;

imgs[1] = banner_dir + 'MothersfullbannerV2.gif';
lnks[1] = 'http://www.autoobsession.com.au/mothersproduct/welcome';
alt[1] = 'Mothers Car Care';
intvs[1] = 25000;
width[1] = 480;
height[1] = 60;

imgs[2] = banner_dir + 'HI1.gif';
lnks[2] = 'http://www.hioctanedirect.com';
alt[2] = 'Hi Octane Direct';
intvs[2] = 7500;
width[2] = 480;
height[2] = 60;

imgs[3] = banner_dir + 'HI2.gif';
lnks[3] = 'http://www.hioctanedirect.com';
alt[3] = 'Hi Octane Direct';
intvs[3] = 7500;
width[3] = 480;
height[3] = 60;

imgs[4] = banner_dir + 'visionr4blk.jpg';
lnks[4] = 'http://www.visionr.com.au';
alt[4] = 'Vision R';
intvs[4] = 15000;
width[4] = 480;
height[4] = 60;

imgs[5] = banner_dir + 'justjdm.jpg';
lnks[5] = 'http://www.justjdm.com.au';
alt[5] = 'JustJDM';
intvs[5] = 15000;
width[5] = 480;
height[5] = 60;

imgs[6] = banner_dir + 'x3e.jpg';
lnks[6] = 'http://www.x3e.com.au';
alt[6] = 'x3e';
intvs[6] = 15000;
width[6] = 438;
height[6] = 60;

imgs[7] = banner_dir + 'topsecret.jpg';
lnks[7] = 'http://www.topsecretimports.com.au';
alt[7] = 'Top Secret Imports';
intvs[7] = 15000;
width[7] = 468;
height[7] = 60;

imgs[8] = banner_dir + 'VSport-Banner_Dec09.jpg';
lnks[8] = 'http://www.vsport.com.au';
intvs[8] = 15000;
alt[8] = 'VSport';
width[8] = 468;
height[8] = 60;

imgs[9] = banner_dir + 'ROTA_AUS_500px.jpg';
lnks[9] = 'http://';
alt[9] = 'Rota Australia';
intvs[9] = 15000;
width[9] = 215;
height[9] = 60;

imgs[10] = banner_dir + 'Ecutek.jpg';
lnks[10] = 'http://ecutek.com.au';
alt[10] = 'ECUTEK';
intvs[10] = 15000;
width[10] = 252;
height[10] = 60;  

imgs[11] = banner_dir + 'Fulcrum.jpg';
lnks[11] = 'http://www.fulcrumsuspensions.com.au';
alt[11] = 'Fulcrum Suspensions';
intvs[11] = 15000;
width[11] = 338;
height[11] = 60;  

var currentAd = 0;
var imgCt = imgs.length;

function cycle() {
  if (currentAd == imgCt) {
    currentAd = 0;
  }
  var banner = document.getElementById('adBanner');
  var link = document.getElementById('adLink');

  window.clearInterval(intv);
  intv = window.setInterval("cycle()", intvs[currentAd]);

  banner.src = imgs[currentAd];
  banner.alt = alt[currentAd];
  banner.width = width[currentAd];
  banner.height = height[currentAd];
  document.getElementById('adLink').href = lnks[currentAd];
  currentAd++;
}

var intv = window.setInterval("cycle()", 0);

if (enabled)
{
	document.write('<a href="'+lnks[0]+'" id="adLink" target="_blank"><img src="'+imgs[0]+'" alt="'+alt[0]+'" id="adBanner" border="0" width="'+width[0]+'" height="'+height[0]+'"></a>');
}