function initRotator() {
    // arguments: image name, rotation speed (milliseconds), 
    // path to images (optional), name of target window (optional, string)
    var rotator1 = new dw_Rotator('img1', 3500, "../images/features/");
    // add the images to rotate into that image object
    rotator1.addImages("banner-01.jpg", "banner-02.jpg", "banner-03.jpg");
    // add the corresponding actions to take onclick of those images 
    // destination url or function pointer
    rotator1.addActions("#", "#", "#" );
    //rotator1.rotate(); // sometimes may want to call rotate here
    
    dw_Rotator.start();
}
