$(function(){
	$('a[rel=external]').attr('target', '_blank');
});

// agenda
var shift = 420;
	
	$(document).ready(function() {
		//$("#carousel").css("overflow", "hidden");
		var ulWidth = 250;
		$("#carousel ul img").each(function(i) {
			//alert($(this).css("border"));
			ulWidth += $(this).outerWidth(true) + 02; //non me lo spiego il 4
		});
		$("#carousel ul").css("width", ulWidth);
		$("#right").click(function() {
			var newPos = $("#carousel ul").position().left - shift;
			if ($("#carousel ul").width() + newPos < $("#carousel").width()) {
				newPos = $("#carousel").width() - $("#carousel ul").width();
			}
			$("#carousel ul").animate({ left:newPos+"px"}, 500, "easeInExpo");	
		});
		$("#left").click(function() {
			var newPos = $("#carousel ul").position().left + shift;
			if (newPos > 0) newPos = 0;
			$("#carousel ul").animate({ left:newPos+"px"}, 500, "easeInExpo");			  
		});
	});
