// JavaScript Document
$(function() {
	$(".titolo2").fadeOut(200);
	$("#ilcampione, #lapizza, #ilristorante").hover(
		function () {
			$('body').css({'overflow' : 'hidden'});
			var e = $(this).attr("id");
			$(".try").css('z-index', 200);
			$("#"+e).css('z-index', 500);
			$("#"+e+" .img_main").stop().animate({marginTop: "-77px", marginLeft: "-50px", width: "350px", height: "538px" }, 300, 'swing');
			$("#"+e+" .titolo").stop().animate({width: "350px", height: "110px", marginLeft: "-50px", bottom: "200px"}, 500, 'swing');
			$("#"+e+" .titolo2").stop().animate({width: "350px", height: "110px", marginLeft: "-50px", bottom: "310px"}, 500, 'swing');
			$("#"+e+" .titolo2").fadeIn(200);
		},
		function () {
			var e = $(this).attr("id");
			$(".try").css('z-index', 200);
			$("#"+e+" .img_main").stop().animate({marginTop: "0px", marginLeft: "0px", width: "200px", height: "307px" }, 300);
			$("#"+e+" .titolo").stop().animate({width: "150px", height: "46px", marginLeft: "25px", bottom: "90px"}, 500, 'swing');
			$("#"+e+" .titolo2").stop().animate({width: "150px", height: "46px", marginLeft: "25px", bottom: "135px"}, 500, 'swing');
			$("#"+e+" .titolo2").fadeOut(200);
			$('body').css({'overflow' : ''});
		}
	);
	$("#ilcampione, #lapizza, #ilristorante").click( function () {
		var e = $(this).attr("rel");
		window.location=e;
	});
});
