// JavaScript Document array for image rotator on homepage

var rotator1 = {
    path:   'images/contentImages/',
    id:   'r1',
    speed:  4000, // default 4500
    images: ["horseriding_245x215.jpg", "guitarandcat_245x215.jpg", "unicycling_245x215.jpg", "rivercottage_245x215.jpg", "paraski_245x215.jpg"],
    bTrans: true // ie win filter
}

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

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