// JavaScript Document
var rotator1 = {
    path:   'images/',
    id:   'r1',
    speed:  5000, // default is 4500
    bTrans: true, // ie win filter
    bRand:  false, // random rotation
    bMouse: true, // pause/resume
    images:     ["feature_01.jpg", "feature_02.jpg", "feature_03.jpg", "feature_04.jpg", "feature_05.jpg", "feature_06.jpg" ],
    actions:    ["litter_box_odor.html", 
                "product_d_wood.html", 
				"dog_urine.html", 
				"product_d_furniture.html",
				"product_a_auto.html",
				"product_d_skunk.html"]
}

function initRotator() {
    dw_Rotator.setup(rotator1);
}

dw_Event.add( window, 'load', initRotator);
