/*
* MovingBoxes demo script
*/

$(function () {

    $('#slider').movingBoxes({
        startPanel: 1,      // start with this panel
        width: 900,    // overall width of movingBoxes (not including navigation arrows)
        panelWidth: .4,     // current panel width adjusted to 70% of overall width
        buildNav: false,   // if true, navigation links will be added
        wrap: true,
        autoplay:true,
        navFormatter: function () { return "&#9679;" } // function which gets nav text from span inside the panel header
    });

});
