/*************************************************************************  This code is from Dynamic Web Coding at dyn-web.com  Copyright 2001-5 by Sharon Paine   See Terms of Use at www.dyn-web.com/bus/terms.html  regarding conditions under which you may use this code.  This notice must be retained in the code as is!*************************************************************************/// for preloading imagesimageHandler.path = "image-rotate/";// put images to preload hereimageHandler.preload("1.jpg", "2.jpg", "3.jpg", "4.jpg", "5.jpg");function initBanner() {    if ( !document.getElementById ) return;    // arguments: id, delay (amount of time in milliseconds you linger on each item)    // set up pause onmouseover and resume onmouseout? (boolean)     var ban1 = new dw_Banner('bannerDiv', 4500, true);    // put your items here    ban1.addItem('<a href="http://www.dyn-web.com"><img src="image-rotate/1.jpg" width="466" height="369" alt=""></a>');    ban1.addItem('<a href="http://www.dyn-web.com"><img src="image-rotate/2.jpg" width="466" height="367" alt=""></a>');    ban1.addItem('<a href="http://www.dyn-web.com"><img src="image-rotate/3.jpg" width="466" height="350" alt=""></a>');    ban1.addItem('<a href="http://www.dyn-web.com"><img src="image-rotate/4.jpg" width="466" height="252" alt=""></a>');    ban1.addItem('<a href="http://www.dyn-web.com"><img src="image-rotate/5.jpg" width="466" height="310" alt=""></a>');        ban1.rotate();  // Begin the rotation }