/*
 * MovingBoxes demo script
 */

$(function(){

	$('#slider-two').movingBoxes({
		startPanel   : 3,      // start with this panel
		width        : 720,    // overall width of movingBoxes (not including navigation arrows)
		panelWidth   : .3,     // current panel width adjusted to 70% of overall width
		//imageRatio   : 1,   // Image ratio set to 16:9
		buildNav     : true,
		panelType    : '> li', // selector to find the immediate ">" children "li" of "#slider-one" in this case
		wrap         : false,
		navFormatter : function(){ return "&#9679;"; } // function which gets nav text from span inside the panel header
	});

});
