function imageRotator() {
    // arguments: image name, rotation speed, (optional) path to images
    var rotator1 = new dw_Rotator('the_images', 3500, "distillery_images/");
    // add the images to rotate into that image object
    rotator1.addImages("image_02.jpg", "image_03.jpg", "image_04.jpg", "image_05.jpg", "image_06.jpg", "image_07.jpg", "image_08.jpg", "image_09.jpg", "image_10.jpg", "image_11.jpg", "image_12.jpg");
    //rotator1.rotate(); // sometimes may want to call rotate here
    dw_Rotator.start();
}