// JavaScript Document
/*************************************************************************
  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', 8000, "images/");
    // add the images to rotate into that image object  
    rotator1.addImages("oausa_top-image-01.jpg", "oausa_top-image-02.jpg", "oausa_top-image-03.jpg", "oausa_top-image-04.jpg", "oausa_top-image-05.jpg", "oausa_top-image-06.jpg", "oausa_top-image-07.jpg", "oausa_top-image-08.jpg");
    //rotator1.rotate(); // sometimes may want to call rotate here
    dw_Rotator.start();
}