$(document).ready(function(){ 
$("#pageflip").hover(function() { //On hover...
	$(".img_block img, .img_block, .msg_block").stop()
		.animate({ //Animate and expand the image and the msg_block (Width + height)
			width: '307px',
			height: '319px'
		}, 700);
	} , function() {
	$(".img_block img, .img_block").stop() //On hover out, go back to original size 50x52
		.animate({
			width: '50px',
			height: '52px'
		}, 320);
	$(".msg_block").stop() //On hover out, go back to original size 50x50
		.animate({
			width: '50px',
			height: '50px'
		}, 300); //Note this one retracts a bit faster (to prevent glitching in IE)
});

$(".ficha").openDOMWindow({ 
height:560, 
width:550, 
positionType:'absolute', 
positionTop:10, 
eventType:'click', 
positionLeft:200, 
windowSource:'iframe', 
windowPadding:0
});
});