$(document).ready(function(){
	$('#nav ul li a').hover(
		function() {
			$(this).find("img").stop()
			.animate({
				width: "64px",
				height: "80px",
				left: "23px",
				top: "14px"
			}, 150);
		},
		function() {
			$(this).find("img").stop()
			.animate({
				width: "32px",
				height: "40px",
				left: "39px",
				top: "30px"
			}, 150)
		}
	);
});
