/*
 * MovingBoxes demo script
 */

$(function(){

	$('#slider-two').movingBoxes({
		startPanel   : 5,      // start with this panel
		width        : 849,    // overall width of movingBoxes (not including navigation arrows)
		panelWidth   : .213,     // current panel width adjusted to 70% of overall width
		buildNav     : true,   // if true, navigation links will be added
		navFormatter : function(index, panel){ return panel.find('h2 span').text(); } // function which gets nav text from span inside the panel header
	});



});
