window.onload = function() {advertise();};

var ads = [
	   "Abby's Parkside Nursery/Florist",
	   "Animal Appetites Ltd",
	   "Advanced General Contracting",
	   "Artisian Construction",                            
	   "Amity Harbor Sports",
	   "batting 1.000",                                        
	   "Bee Hive Builders",
	   "Bill Russack and Family",                       
	   "Brands Cycle & Fitness",
	   "Bill Quinn & Sons Plumbing/Heating",                 
	   "Carvel Corner",
	   "CDFS LLP",
	   "Century 21 American Homes",
	   "Charles O'Shea Funeral Home",             
	   "Children of Hope",
	   "Ciminelli Motors",                                     
	   "Corry's Ale House",
	   "Coldwell Banker Manor Gate Reality",
	   "Denise R. Langweber, Atty at Law",
	   "DCS Sports Cards",
	   "diMonda Painting",
	   "Donachie, Fenton & Associates",
	   "Dunkin'Donuts Sunrise Hwy",
	   "Elm Air Conditioning",
	   "Empire Chimney",
	   "Hemingway's American Bar & Grill",
	   "hometheater.biz",
	   "Iannelli Diamonds",
	   "Iavarone Bros. of Wantagh",
	   "Income Tax Savers",
	   "Jim Dandy Cleaners",
	   "JN Painting",
	   "Kwong Ming Restaurant",
	   "LMGI, Ltd.",
	   "Livrieri & Golub Inc.",
	   "Life Styles Sports",
	   "Love My Puppies",
	   "Marsala's Pizzeria Massapequa",
	   "Maplewood Schools",
	   "Mid-Island Medical",
	   "Mulcahy's Restaurant",
	   "Maimonidies-Marshall Lodge #739",
	   "National Waste Services",
	   "Norma Fishing Charters",
	   "Numa's Florist",
	   "Otto's Deli",
	   "Park Ave. Service",
	   "Park Avenue Gardens",
	   "Parola, Gross, P.C.",
	   "Prefer Perfect Restoration, Inc",
	   "Pita Lovers",
	   "RCC Concrete",
	   "Reality Advisors",
	   "Saporito Pizzeria Restaurant",
	   "Sandy's Shoes and Accessories",
	   "Seaford Beverage",
	   "Sights- N- Sounds",
	   "South Shore Eye Care",
	   "The Fireplace Store",
	   "Tragar Oil",
	   "The Healthy Coach",
	   "State Farm Insurance/ Sandra Simpson",
	   "SUN Pontiac GMC Truck Hummer",
	   "Town Reality Co",
	   "Town and Country Tuxedos",
	   "Universe Appliance Repairs",
	   "Wantagh Abbey, Inc",
	   "Wantagh Auto Body",
	   "Wantagh American Legion",
	   "Wantagh Martial Arts",
	   "Wantagh Chamber of Commerce",
	   "Wantagh Hook & Ladder/ Eng 1",
	   "Wantagh Inn",
	   "W. McGuinness Home Improvements",
	   "World Gym Wantagh",
	   "Social Restaurant",
	   "True North Development"
	   ];

var adNumber = 0;
var hex=255;
var fadeout = 0;
var lastad = 0;
var fadeid;


function advertise() {
        hex = 255;
        fadeout = 0;
        clearTimeout(fadeid);
        getad();
        setTimeout("advertise();",5000);
}

function getad() {
        while (adNumber == lastad) {
		adNumber = rand(ads.length)-1;
        }
	
        lastad = adNumber;
	
        var adID = document.getElementById("advertisement");
        adID.innerHTML=ads[adNumber];
        fadetext();
}


function fadetext(){ 
        if(hex>0 && !fadeout) { 
		hex-=5; 
		document.getElementById("advertisement").style.color="rgb("+hex+","+hex+","+hex+")";
		fadeid = setTimeout("fadetext()",50); 
        }
        else {
		fadeout = 1;
		hex+=5; 
		document.getElementById("advertisement").style.color="rgb("+hex+","+hex+","+hex+")";
		fadeid = setTimeout("fadetext()",200); 
        }

}


function rand ( n ) {
        return ( Math.floor ( Math.random ( ) * n + 1 ) );
}

