$(function(){

	$('#slider-one').movingBoxes({
		startPanel   : 2,      // start with this panel
		width        : 850,    // overall width of movingBoxes (not including navigation arrows)
		imageRatio   : 1,      // Image ration set to 1:1 (square image)
		panelWidth   : .374,     // current panel width adjusted to 33.5% of overall width
		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
		panelType    : '> li', // selector to find the immediate ">" children "li" of "#slider-one" in this case
		navFormatter : function(){ return "&#9679;"; } // function which returns the navigation text for each panel
	});
});
