﻿// Add Rotator for Team Navy
// Zach Crum : crum.zach @ gmail.com
//

// Do not change this
function Sponsor(name, link, pic) {
    this.name = name;
    this.link = link;
    this.pic = pic;
}

// Add new sponsors or remove sponsors here.

var sponsors = new Array();
sponsors[0] = new Sponsor("", "mailto:info@teamnavy.org?subject=Please send me information about sponsoring Team Navy", "sponsor.png");
sponsors[1] = new Sponsor("Galaxy Laser Tag", "http://www.galaxylasertag.net", "galaxy_laser_tag.jpg");
sponsors[2] = new Sponsor("Adrenaline Promotions", "http://www.adrenalinepromotions.com/", "AdrenalineLogo.png");


var currentsponsor = 0;
function adsslideshow() {
    currentsponsor++;
    if (currentsponsor >= sponsors.length) {
        currentsponsor = 0;
    }
    document.getElementById("ads").innerHTML = '<a href="' + sponsors[currentsponsor].link + '" target="blank"><img src="/ads/' + sponsors[currentsponsor].pic + '" style="width:220px" class="images" alt="' + sponsors[currentsponsor].name + '"/></a><br />' + sponsors[currentsponsor].name;
    if (currentsponsor == 0) {
        setTimeout("adsslideshow()", 10000);
    } else {
        setTimeout("adsslideshow()", 6000);
    }
}

