$(document).ready(function(){
	var flag;
	var bounce;
	var rebounce;
	function bouncepeel(){
		//Rimbalzo da solo
		bounce = setInterval(function(){
			$("#pageflip img , .msg_block").stop()
				.animate({
					width: '307px', 
					height: '319px'
				}, 1000);
			
			flag=false;
			rebounce = setInterval(function(){
					flag=true;
					$("#pageflip img").stop() 
						.animate({
							width: '165px', 
							height: '171px'
						}, 420);
					$(".msg_block").stop() 
						.animate({
							width: '165px', 
							height: '165px'
						}, 400);
					clearInterval(rebounce);
					flag=false;
			},200);
		},600);
	};
	
	//Passaggio mouse
	$("#pageflip").hover(function() {
		//SE SONO ATTIVI LI CHIUDO
		clearInterval(bounce);
		if(flag){
			clearInterval(rebounce);
		}
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '165px', 
				height: '171px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '165px', 
				height: '165px'
			}, 200);
		bouncepeel();
	});	
	
	bouncepeel();
});

