$(document).ready( function() {
	var leftoffset=210;
	var imagewidth=546;
	var numimages=$("div#scroller-stage img").length;
	$("div#scroller-stage").css("width", (numimages*imagewidth*2));
	$("div#scroller-stage").css("left", (leftoffset-imagewidth));
	for (var counter=0; counter<numimages; counter++) {
		$("div#scroller-stage").append($("div#scroller-stage div.home_content_holder:eq("+counter+")").clone());
	}
	setTimeout(scrollportfolio=function () {
		var scrollerLeft=parseInt($("div#scroller-stage").css("left"));
		if (scrollerLeft<=(-(imagewidth*(numimages+1)-leftoffset))) {
			scrollerLeft=(leftoffset-imagewidth);
			$("div#scroller-stage").css("left", scrollerLeft);
		}
		$("div#scroller-stage").animate({ left: (scrollerLeft-imagewidth) }, 1000,"", setTimeout("scrollportfolio()", 4000));
	}, 4000);

});