var d = 1;
banner1 = new Image();
banner1.src = "banners/fao.png";
banner2 = new Image();
banner2.src = "banners/irongate.png";
banner3= new Image();
banner3.src = "banners/quakercreek.png";
banner4= new Image();
banner4.src = "banners/acfb.png";
banner5= new Image();
banner5.src = "banners/winetrail.png";
banner6 = new Image();
banner6.src = "banners/spotlight.png";
banner7 = new Image();
banner7.src = "banners/effigydesigns.png";
banner8 = new Image();
banner8.src = "banners/mapleleaf.png";
banner9 = new Image();
banner9.src = "banners/bodyguard.png";



links = new Array
links[1] = "http://www.faogourmet.com"
links[2] = "http://www.irongatevineyards.com"
links[3] = "http://www.quakercreekgolf.com"
links[4] = "http://www.acfarmbureau.com"
links[5] = "http://www.hawriverwinetrail.com"
links[6] = "http://www.spotlightpics.com"
links[7] = "http://www.effigydesigns.com"
links[8] = "http://www.mapleleafconstruction.com"
links[9] = "http://www.bodyguardrail.com"



description = new Array
description[1] = "For All Occasions, Ltd.  We have something for every special occasion, or special person."
description[2] = "The Winery at Iron Gate Farm.  An Award Winning Winery providing Entertainment and Award Winning Wines."
description[3] = "Quaker Creek Golf.  Come by to see us for the BEST GOLF IN MEBANE!"
description[4] = "The object of the Alamance County Farm Bureau Corporation shall be to develop, foster, promote and protect programs for the general welfare of farm people, including their economic, social and educational well-being, and other purposes as set forth in the Charter."
description[5] = "Haw River Wine Trail.  Enjoy North Carolina's Wine Country! "
description[6] = "Spotlight Photography.  Team Photos, Sports Action, Weddings, Senior and Family Photos, All Special Occasions!"
description[7] = "Effigy Designs.  Mebane's Premiere Web Design Firm."
description[8] = "Maple leaf Costruction.  We Make Dreams Come True."
description[9] = "Fall Protection Systems, Inc.  Our systems protect those that build America."




function startTime(){

        var time= new Date();
        hours= time.getHours();
        mins= time.getMinutes();
        secs= time.getSeconds();
        closeTime=hours*3600+mins*60+secs;
        closeTime+=8;   // How many seconds til the next rotation
        Timer();

}

function Timer(){
        var time= new Date();
        hours= time.getHours();
        mins= time.getMinutes();
        secs= time.getSeconds();
        curTime=hours*3600+mins*60+secs
        if (curTime>=closeTime){
                if (d < 9){     // The number 9 is the amount of banners that you have
                        d++;
                        document.banner.src = eval("banner" + d + ".src");
                }
                else{
                        d = 1;
                        document.banner.src = eval("banner" + d + ".src");
                }
                startTime();
        }
        else{
                window.setTimeout("Timer()",1800)}

}
 
function clickLink(){
	
	window.open(links[d], "_blank")
}

function descript(){
        window.status = description[d]
}

