// JavaScript Document



$(document).ready(function(){

//Page Flip on hover
$("#pageflip img").animate({ 	width: '136px', 	height: '120px'			}, 500); 
	$("#pageflip").hover(function() {
		$("#pageflip img").stop()
			.animate({
				width: '492px', 
				height: '474px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '136px', 
				height: '120px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '136px', 
				height: '120px'
			}, 200);
	});

	
});
