$('#readyTest').corner();
$(function(){$('div.demo').each(function() {var t = $('p', this).text();eval(t);});});

$(document).ready(function(){
	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '300px', 
				height: '300px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '60px', 
				height: '60px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '60px', 
				height: '60px'
			}, 200);
	});
});
