// JavaScript Document
$(document).ready(function(){

//Page Flip on hover

	$("#pageflip, .msg_block").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '275px',//'307px', 
				height: '275px'//'319px'
			}, 500); //rapidité de deroulement
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '85px', 
				height: '87px'
			}, 920);//image derriere le coin second plan quand elle remonte a l origine 220
		$(".msg_block").stop() 
			.animate({
				width: '85px', 
				height: '85px'
			}, 900);//image derriere le coin premier plan quand elle remonte a l origine 20
	});

	
});
