/*
			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( 4, 468, 60, "Clicca", 1, 0 );
			myAd.Ad( "banner/pub468x60.png", "pubblicita.html", "_blank", "Clicca per scoprire come pubblicizzare qui!" );
			myAd.Ad( "http://www.blogmagazine.net/adv/bm_468x60.jpg", "http://www.blogmagazine.net", "_blank", "BlogMagazine" );
			myAd.output();