/*
 * MovingBoxes demo script
 */

$(function(){

	$('#slider').movingBoxes({
		startPanel   : 4,      // start with this panel
		width        : 940,    // overall width of movingBoxes (not including navigation arrows)
		imageRatio   : 1,      // Image ration set to 1:1 (square image)
		wrap         : true,   // if true, the panel will "wrap" (it really rewinds/fast forwards) at the ends
		buildNav     : true,   // 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
	});

});
