$(function(){
	$('#slider-one').movingBoxes({
		startPanel  : 1,    // start with this panel
		wrap        : true, // psuedo wrapping - it just runs to the other end
		width       : 558,  // overall width of movingBoxes
		imageRatio  : 1,     // Image ration set to 1:1
		panelWidth  : .170
	});
	
	$('.fadein img:gt(0)').hide();
	setInterval(function(){
		$('.fadein :first-child').fadeOut()
		.next('img').fadeIn()
		.end().appendTo('.fadein');
		}, 
	3000);
	
});



