﻿$(document).ready(function() {
	//Page Flip on hover
	$("#divPeel").hover(function() {
		$("#divPeel img , .spanPeel").stop()
			.animate({
				width: '500px',
				height: '519px'
			}, 500);
	}, function() {
		$("#divPeel img").stop()
			   .animate({
			   	width: '80px',
			   	height: '85px'
			   }, 220);
		$(".spanPeel").stop()
			   .animate({
			   	width: '80px',
			   	height: '80px'
			   }, 200);
	});
});
