
$(function(){
	//PreloadImages();
	$('#welcome').css({opacity: 0});
	
	$("#slideshow").slideshow(
	{
			      interval: 8000,
			      type: 'sequence',
			      effect: 'fade',
			      direction: '',
			      effectlength: 2500
	});
			
	$('#welcome').animate({fontSize: '400%', opacity: 1}, 3000);	 

	  
	// i link disabilitati vengono collegati a # 
	$("a[disabled='true']").attr("href", "#");
	
	// sostituisco _at_ nei link mailto con @
	$("a[href^=mailto]").each(function(){
		var str = $(this).attr('href');
		$(this).attr('href', str.replace("[at]", "@"));
	});
});	
