//imposta target _blank ai link esterni
function linkext(){
	$("a.ext").each(function () {
		 $(this).attr({ 
          target: "_blank",
          title: $(this).attr("title")+" (link esterno, si apre in una nuova finestra)"
        });
	});
}
function animateBackground(){
	$('#consorziate li a')
	.bind("mouseover focus", function(){
		$(this).stop().animate(
			{opacity:0.7}, 
			300)
		})
	.bind("mouseout blur", function(){
		$(this).stop().animate(
			{opacity:1}, 
			300)
		})
}

//init
$(document).ready(function(){
	linkext();
	animateBackground();
});