jQuery(document).ready(function($) {
  $(".cornerpeel").hover(function() { //Hover Over
								  
	 $(".cornerpeel img").stop()
 .animate({ //Expand the Hover Image
	width: '440px',
	height: '440px'
 }, 600);
 
	 $(".message").stop()
 .animate({ //Expand the Message
	width: '377px',
	height: '377px'
 }, 600);
 
  } , function() {
	 $(".cornerpeel img").stop() //Hover Out Go Back To Original
 .animate({
	width: '135px',
	height: '135px'
 }, 200);
 $(".message").stop() //Hover Out Go Back To Original
 .animate({
	width: '116px',
	height: '116px'
 }, 180); //This should be a tad faster than the image because IE is known to glitch
  });
});