$(function() {
	var carouselPaused = false;
	
	$("#sitesCarousel").carouFredSel({
		scroll : {
			auto: false,
			items : 1,
			duration : 4000,
			easing : "linear"
		},
		next : { 
			onAfter : function() {
				if (!carouselPaused) {
					setTimeout(function() { $("#sitesCarousel").trigger("next"); }, 0);
				}
			}
		}
	});
	
	$(".image_carousel a").bind('mouseenter', function() {
		carouselPaused = true;
		$("#sitesCarousel").trigger("pauseScrollingCompletely");
	});
	$(".image_carousel a").bind('mouseleave', function() {
		carouselPaused = false;
		$("#sitesCarousel").trigger("next");
	});

	$("#sitesCarousel").trigger("next");
});
