$.noConflict();
jQuery(document).ready(function($) {

//Page Flip on hover

	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '215px', 
				height: '218px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '122px', 
				height: '126px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '118px', 
				height: '120px'
			}, 200);
	});

	
});
