// JavaScript Document

jQuery(function(){
	jQuery("#carouselInner").css("width",950*jQuery("#carouselInner ul.column").size()+"px");
	jQuery("#carouselInner ul.column:last").prependTo("#carouselInner");
	jQuery("#carouselInner").css("margin-left",(jQuery(window).width()-580)/2-1160);
	jQuery("#carouselPrev").css("left",(jQuery(window).width()-830)/2);
	jQuery("#carouselNext").css("right",(jQuery(window).width()-800)/2);
	jQuery(".patternl").width((jQuery(window).width()-580)/2);
	jQuery(".patternr").width((jQuery(window).width()-580)/2);
	jQuery("#carouselPrev").click(function(){
			jQuery("#carouselNext,#carouselPrev").hide();
			jQuery("#carouselInner").animate({
			marginLeft : parseInt(jQuery("#carouselInner").css("margin-left"))+580+"px"
		},"slow","swing" , 
			function(){
				jQuery("#carouselInner").css("margin-left",(jQuery(window).width()-580)/2-1160);
				jQuery("#carouselInner ul.column:last").prependTo("#carouselInner");
				jQuery("#carouselNext,#carouselPrev").show();
			});
	});

	jQuery("#carouselNext").click(function(){
			jQuery("#carouselNext,#carouselPrev").hide();
			jQuery("#carouselInner").animate({
			marginLeft : parseInt(jQuery("#carouselInner").css("margin-left"))-580+"px"
		},"slow","swing" , 
			function(){
				jQuery("#carouselInner").css("margin-left",(jQuery(window).width()-580)/2-1160);
				jQuery("#carouselInner ul.column:first").appendTo("#carouselInner");
				jQuery("#carouselNext,#carouselPrev").show();
		});
	});
	var timerID = setInterval(function(){
		jQuery("#carouselNext").click();
		},8000);
		jQuery("#carouselPrev img,#carouselNext img").click(function(){
			clearInterval(timerID);
		});
});
