﻿$(document).ready(function () {
    $('#featured-products-slider').movingBoxes({
        startPanel: 5,      // start with this panel
        width: 600,    // overall width of movingBoxes (not including navigation arrows)
        reducedSize: 1,
        panelWidth: 0.25,
        //wrap: true,   // if true, the panel will "wrap" (it really rewinds/fast forwards) at the ends
        buildNav: false,   // if true, navigation links will be added
        navFormatter: function () { return "&#9679;"; } // function which returns the navigation text for each panel
        //navFormatter : function(index, panel){ return panel.find('h2 span').text(); } // function which gets nav text from span inside the panel header
    });
});
