if ( $.browser.msie ) {
  if($.browser.version == 6.0){
  	$('#pageflip img').attr("src", "images/page_flip.gif");
  }
}

$("#pageflip").hover(function() { //On hover...
	$("#pageflip img , .msg_block").stop()
		.animate({ //Animate and expand the image and the msg_block (Width + height)
			width: '337px',
			height: '349px'
		}, 500);
	} , function() {
	$("#pageflip img").stop() //On hover out, go back to original size 50x52
		.animate({
			width: '75px',
			height: '76px'
		}, 220);
	$(".msg_block").stop() //On hover out, go back to original size 50x50
		.animate({
			width: '71px',
			height: '71px'
		}, 200); //Note this one retracts a bit faster (to prevent glitching in IE)
});