var stepcarousel={
	
	setup:function(config){
		jQuery(function(){
		var width=0;
		jQuery(".stepcarousel div.panel").each(function(){
			jQuery(this).css("width","");
			width+= $(this).width()+20;
		});
		jQuery(".stepcarousel").width("800");
		jQuery(".stepcarousel").height(24);
		jQuery(".stepcarousel .belt").width(width);
		jQuery(".stepcarousel").append('<marquee id="scroller" scorllllamount="30" scolldelay="2000" direction="left" onmouseover="this.stop();" onmouseout="this.start()"></marquee>');
		jQuery(".stepcarousel .belt").appendTo(jQuery(".stepcarousel marquee"));
		});
	}
}



