$(document).ready(function(){

//Page curl on hover

	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '50px', 
				height: '52px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '50px', 
				height: '50px'
			}, 200);
	});

	
});

		function popUp1(page,w,h) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
wint = wint - 50;
window.open(page,'popup','left='+winl+',top='+wint+',toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width='+w+',height='+h);
}
		function popUp2(page,w,h) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
wint = wint - 50;
window.open(page,'popup','left='+winl+',top='+wint+',toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width='+w+',height='+h);
}