var rotator1 = {
    path:   'images/rotate/',
    id:   'r1',
    bTrans: true,
    bRand:  true, // random rotation
    speed:  4500,
    images: ["calendar1.jpg", "calendar2.jpg", "calendar3.jpg"]
}

var rotator2 = {
    path:   'images/rotate/',
    id:   'r2',
    bTrans: true,
    bRand:  true, // random rotation
    bMouse: true,
    speed:  6000,
    images:     ["calendar4.jpg","calendar5.jpg","calendar6.jpg"]
}

var rotator3 = {
    path:   'images/rotate/',
    id:   'r3',
    bTrans: true,
    bRand:  true, // random rotation
    bMouse: true,
    speed:  7500,
    images:     ["calendar7.jpg","calendar8.jpg","calendar9.jpg"]
}

var rotator4 = {
    path:   'images/rotate/',
    id:   'r4',
    bTrans: true,
    bRand:  true, // random rotation
    bMouse: true,
    speed:  9000,
    images:     ["calendar10.jpg","calendar11.jpg", "calendar5.jpg"]
}

function initRotators() {
    dw_Rotator.setup(rotator1, rotator2, rotator3, rotator4);
}

dw_Event.add( window, 'load', initRotators);