// JavaScript Document
// 
// 		The parameters for Banner() are: 
// 			time between rotations (seconds)
// 			width of banners
// 			height of banners
// 			alt text
// 			starting banner
// 			random (0 means it iterates through banners, 1 means it randomly picks the next banner)
// 		
// 		The parameters for Ad() are: 
// 			path to image
// 			url
// 			target (use "_blank" to open in a new window)
// 			mouseover message
// 			For most of these parameters, a null tells the script to use the default value. 


myAd = new Banner( 4, 500, 50, "Visit One Of Our Local Neighbors' Websites!", 4, 0 );
myAd.Ad( "images/bannerAds/jackiesconsignments.gif", "http://jackiesconsignments.com", "_blank", "Jackie's Consignments - Everything Deserves a Second Chance!." );
myAd.Ad( "images/bannerAds/jpvideo.gif", "http://myjpvideo.com", "_blank", "J&amp;P Video - Napa's Last Remaining Independant Video Store" );
myAd.Ad( "images/bannerAds/williamsnowden.gif", "http://williamsnowden.com", "_blank", "William R. Snowden - Landscape Design Archetect" );
myAd.Ad( "images/bannerAds/winecountrywebs.gif", "http://winecountrywebs.com", "_blank", "WineCountryWebs.com - Quality, Affordable Small Business Web Design" );
myAd.output();

