$(document).ready(function(){

	/* MESSAGGI DI SESSIONE */
		$("#flashMessage").fadeTo(50, 0.96);
		$("#flashMessage").fadeTo(5000, 0.95);
		$("#flashMessage").fadeOut("slow");
	/**/
	
	/* INSERISCO LA PREVIEW DI TUTTI I LINK ESTERNI CON CLASSE .SNAPSHOT */
		$('.snapshot').each(function() {
			var Imghref = $(this).attr("href");
			$(this).before('<img class="snapshotImg" src="http://images.websnapr.com/?size=s&url=' + Imghref + '" alt="Preview" />');
		});
	/**/


	/* CAPTION ANIMATTI PER LE IMMAGINI */
		$('.imgtmb').hover(function() {
			var title = $(this).find('a').attr('title');
			$(this).find('a').attr('title', "");
			$(this).append("<div class='caption'>" +title+ "</div>");
			$(this).find('div.caption').stop(false,true).show().fadeTo("slow", 0.7);
		},
		function() {
			var title = $(this).find('div.caption').text();
			$(this).find('div.caption').stop(false,true).fadeOut(200);  
			$(this).find('div.caption').remove();
			$(this).find('a').attr('title', title);
		});
	/**/

	/* COSE DA MENU ANIMATI */	
	$("#navigation li").fadeTo('slow', 0.7);
	$("#navigation li").hover(
	  function () {
		$(this).stop().fadeTo("fast", 1);
	  }, 
	  function () {
		$(this).stop().fadeTo('slow', 0.7);
	  }
	);
	/**/
	
});

