/**
ACTIONS
 */

$(document).ready(function(){

$("#test2-content").hide();

$("div.avanti").click(function () {
      $("#test2-content").slideDown(2000);
	  $("#test1-content").slideUp(2000);
	});

$("div.indietro").click(function () {
      $("#test1-content").slideDown(2000);
	  $("#test2-content").slideUp(2000);
	});	

$("#header_fade").fadeIn("slow");
$("#side_fade").fadeIn("slow");
$("#footer_fade").fadeIn("slow");

$("a[rel^='prettyPhoto']").prettyPhoto();

});
