// JavaScript Document
/*
$(document).ready(function()
{
   
	$("li.product").hover(
		function () {
			$("li.product .toggle").css({display:"block"});
		}, 
		function () {
			$("li.product .toggle").css({display:"none"});
		}
	);
});

*/

$(document).ready(function()
{
	$(".corners").corners("7px");
});


function peel(todo)
{

	if (todo == 1)
	{
		$("#peel").animate(
		{
			width:300
			, height:300
		});
	}
	else
	{
		$("#peel").animate(
		{
			width:60
			, height:60
		});
	}
}
