<!--
/*
parameters for Banner() are: time between rotations (seconds), width of banners, height of banners, alt text, starting banner, and random (0 means it iterates through banners, 1 means it randomly picks the next banner).
parameters for Ad() are: path to image, url, target (use "_blank" to open in a new window), and mouseover message. For most of these parameters, a null tells the script to use the default value. 
*/
myAd = new Banner( 3, 485, 208, "Spiazzi Costruzioni Meccaniche", 1, 0 );
myAd.Ad( "imgshead/01.jpg", "null", null, "Spiazzi" );
myAd.Ad( "imgshead/02.jpg", "null", null, "Spiazzi" );
myAd.Ad( "imgshead/03.jpg", "null", "null", "Spiazzi" );
myAd.Ad( "imgshead/04.jpg", "null", "null", "Spiazzi" );
myAd.Ad( "imgshead/05.jpg", "null", "null", "Spiazzi" );
myAd.Ad( "imgshead/06.jpg", "null", "null", "Spiazzi" );
myAd.Ad( "imgshead/07.jpg", "null", "null", "Spiazzi" );
myAd.Ad( "imgshead/08.jpg", "null", "null", "Spiazzi" );
myAd.Ad( "imgshead/09.jpg", "null", "null", "Spiazzi" );
myAd.Ad( "imgshead/10.jpg", "null", "null", "Spiazzi" );
myAd.output();
// -->
