﻿// MAINTENANCE:
// All images must be exactly 450 pixels wide and 215 pixels tall.
// At least two images must be specified. Images may appear more than once.
//     EG: If you don't want any image rotation, specify two lines that point to the same image.
// The maximum number of images is unknown. To add images, add lines such as:
//     { src: 'images/mypic.jpg' }
// below. Make sure these lines have commas between them. EG, a list of four images would look like:
//     { src: 'images/anim_1.jpg' },
//     { src: 'images/anim_2.jpg' },
//     { src: 'images/anim_3.jpg' },
//     { src: 'images/anim_4.jpg' }

$(function() {
    $('#centerpiece').crossSlide({
        sleep: 2,
        fade: 1
    }, [
        { src: 'http://www.midwestinscenters.com/images/anim_1.jpg' },
        { src: 'http://www.midwestinscenters.com/images/anim_2.jpg' },
        { src: 'http://www.midwestinscenters.com/images/anim_3.jpg' }
    ]);
});
