$(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" />');
		});
	/**/

	/* INIZIALIZZAZIONE TABELLE ZEBRATE */
		$("tr td:first-child").addClass("row-a");
		//$("table tr:even").addClass("even");
		$("table tr:odd").addClass("row-b");
	/**/


});
