var sponsor = 1;  // global variable for current sponsor (Don't change this!)
var go = 1;       // tells the banner if to rotate

var max = 21;     // number of banners

var url1 = "http://www.sycuancasino.com/";
var url2 = "http://www.sanmanuel.com/";
var url3 = "https://www.igt.com/Pages/Home.aspx";
var url4 = "http://www.klasrobinsonqed.com/";
var url5 = "http://www.rocketgaming.com/";
var url6 = "https://www.wellsfargo.com/com/industry/gaming";
var url7 = "http://www.ovationsfoodservices.com/";
var url8 = "http://www.baronatribe.org/niga.html";
var url9 = "http://www.agem.org/";
var url10 = "http://jicarillaonline.com/";
var url11 = "http://www.phoenix.edu/";
var url12 = "http://www.morongonation.org/";
var url13 = "http://www.pechanga-nsn.gov/page?pageId=1";
var url14 = "http://www.arrowrez.com";
var url15 = "http://www.lenovo.com/us/en/";
var url16 = "http://www.downstreamcasino.com";
var url17 = "https://www.bankofamerica.com/";
var url18 = "http://www.symon.com/digital-signage-gaming.shtml";
var url19 = "https://www6.bankofamerica.com/planning/investments.action";
var url20 = "http://www.millbrooktechnologies.com/";
var url21 = "http://www.vgt.net/";

var text1 = "Sycuan Band of the Kumeyaay Nation";
var text2 = "SAN MANUEL - Indian Bingo & Casino";
var text3 = "IGT - Electronic Reel-Type Slot Machines and Video Gaming Machines";
var text4 = "KlasRobinson Q.E.D. Hospitality Consulting";
var text5 = "Rocket Gaming Systems";
var text6 = "Wells Fargo Financial Services";
var text7 = "Ovations - Catering to the Highest Acclaim";
var text8 = "Barona - Resort and Casino";
var text9 = "Association of Gaming Equipment Manufacturers (AGEM)";
var text10 = "Jicarilla Apache Nation";
var text11 = "University of Phoenix";
var text12 = "Morongo Band of Mission Indians ";
var text13 = "Pechanga Band of Luiseno Mission Indians";
var text14 = "Arrow REZolutions LLC";
var text15 = "Lenovo";
var text16 = "Downstream Casino Resort";
var text17 = "Bank of America";
var text18 = "Symon LV, LLC";
var text19 = "Merrill Lynch Wealth Management";
var text20 = "Millbrook Technologies";
var text21 = "Video Gaming Technologies, Inc.";

// function to link to appropriate sponsor
function GoSponsor()
   {
   location = eval("url" + sponsor);
   }

// function to rotate image
function rotate()
   {
   if (document.images)   // Only if the image object exists so no errors occur with IE 3.0
     {
     if (go)        // If cursor not on image
       {
       if (++sponsor > max) sponsor = 1;
       document.images['pic'].src = "/09sponsors/banner" + sponsor + ".gif";
       window.setTimeout('rotate();',5000);
       }
     else          // If cursor on image, try to rotate later
       {
       window.setTimeout('rotate();',100);
       }
     }
   }

// function to display text in the status bar about the current banner
function windowON()
    {
    window.status = eval('text' + sponsor);
    setTimeout("windowOFF()",2000);
    }

// function to clear the status bar message
function windowOFF()
    {
    window.status="";
    }
