var d = 1;
banner1 = new Image();
banner1.src = "banners/fao.png";
banner2 = new Image();
banner2.src = "banners/dmd.png";
banner3 = new Image();
banner3.src = "banners/irongate.png";
banner4= new Image();
banner4.src = "banners/cwf.png";
banner5 = new Image();
banner5.src = "banners/shadyglenbnb.png";
banner6= new Image();
banner6.src = "banners/acfb.png";
banner7 = new Image();
banner7.src = "banners/spotlight.png";
banner8 = new Image();
banner8.src = "banners/effigydesigns.png";
banner9 = new Image();
banner9.src = "banners/mapleleaf.png";
banner10 = new Image();
banner10.src = "banners/bodyguard.png";



links = new Array
links[1] = "http://www.faogourmet.com"
links[2] = "http://www.dickeymilldelights.com"
links[3] = "http://www.irongatevineyards.com"
links[4] = "http://www.coachwalkerfitness.com"
links[5] = "http://www.theshadyglenbnb.com"
links[6] = "http://www.acfarmbureau.com"
links[7] = "http://www.myspotlightphotography.com"
links[8] = "http://www.effigydesigns.com"
links[9] = "http://www.mapleleafconstruction.com"
links[10] = "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] = "Dickey Mill Delights  We are a unique Gourmet Muffin & Dessert business creating desserts for individual or small group consumption."
description[3] = "The Winery at Iron Gate Farm.  An Award Winning Winery providing Entertainment and Award Winning Wines."
description[4] = "Coach Walker Fitness can take you to whatever level of functional fitness you desire. Coach Walker Fitness will challenge you to work hard so you will reap maximum benefits and we will have fun and laugh in the process."
description[5] = "The Shady Glen Bed & Breakfast. The secret hideaway is built with a beautiful log home structure in a private wilderness escape."
description[6] = "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[7] = "Spotlight Photography.  Team Photos, Sports Action, Weddings, Senior and Family Photos, All Special Occasions!"
description[8] = "Effigy Designs.  Mebane's Premiere Web Design Firm."
description[9] = "Maple leaf Costruction.  We Make Dreams Come True."
description[10] = "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]
}


