//jQuery Peel a Deal - Adapted from Soh Tanaka's Simple Page Peel Effect with jQuery & CSS - http://www.sohtanaka.com/web-design/simple-page-peel-effect-with-jquery-css/
$(document).ready(function(){

//Page Flip on hover

	$("#PeelADeal").hover(function() {
		$("#PeelADeal .smallImg").hide();
		$("#PeelADeal img").stop()
			.animate({
				width: '498px', 
				height: '513px'
			}, 300);
		$("#PeelADeal .largeImg").stop()
			.animate({
				width: '498px', 
				height: '494px'
			}, 300);
		} , function() {
		$("#PeelADeal img").stop() 
			.animate({
				width: '75px', 
				height: '73px'
			}, 220);
		$(".largeImg").stop() 
			.animate({
				width: '75px', 
				height: '70px'
			}, 200, function() {
				$("#PeelADeal .smallImg").show();
		});
	});
});
function showhide(id_div) 
{ 
if(document.getElementById(id_div).style.display=="none") 
{ 
document.getElementById(id_div).style.display="block"; 
} 
else 
{ 
document.getElementById(id_div).style.display="none"; 
} 
} 
