$(function() {	
	var scroll_prev = false,
		scroll_next = false;	
	$(".imgs_produtos_destaque ul").carouFredSel({
		auto : {
			pauseOnHover: true
		},
		items:3,
		scroll 		: {
			items 		: 1,
			duration	: 1500,
			easing		: "linear",
			pauseOnHover: true
		},
		prev : { 
			onAfter : function() {
				if (scroll_prev) setTimeout(function() { $(".imgs_produtos_destaque ul").trigger("prev"); }, 10);
			}
		},
		next : { 
			onAfter : function() {
				if (scroll_next) setTimeout(function() { $(".imgs_produtos_destaque ul").trigger("next"); }, 10);
			}
		}
	});
	$("#prev").hover(
		function() { 
			scroll_prev = true;
			$(".imgs_produtos_destaque ul").trigger("prev"); 
		},
		function() { 
			scroll_prev = false;
		}
	).click(function() {
		return false;
	});
	$("#next").hover(
		function() { 
			scroll_next = true;
			$(".imgs_produtos_destaque ul").trigger("next"); 
		},
		function() {
			scroll_next = false;
		}
	).click(function() {
		return false;
	});
});	
