
/*************************************************************************
  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!
*************************************************************************/

function initRotator() {
    // arguments: image name, rotation speed, (optional) path to images
    var rotator1 = new dw_Rotator('img1', 2000, "images/appliances/");
    // add the images to rotate into that image object  
    rotator1.addImages("rotate_1.jpg", "rotate_2.jpg", "rotate_3.jpg", "rotate_4.jpg", "rotate_5.jpg", "rotate_6.jpg", "rotate_7.jpg", "rotate_8.jpg", "rotate_9.jpg");
    //rotator1.rotate(); // sometimes may want to call rotate here
    dw_Rotator.start();
}

