/*
 * MovingBoxes settings
 */

$(function(){



	$('#slider').movingBoxes({
		startPanel   : 1,      // start with this panel
		width        : 960,    // overall width of movingBoxes (not including navigation arrows)
		panelWidth   : .65,     // current panel width (or max height 500px)
		reducedSize  : .35,       // non-current panel size: 80% of panel size
		fixedHeight  : false,     // if true, slider height set to max panel height; if false, slider height will auto adjust.
		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
	});

	

});
