// JavaScript Document

	$(document).ready(function() {
		$(".can").mouseover(function() {
			$(this).stop().parent().stop().end()
			.animate({ width: "175px", height: "300px" })
			.parent().animate({ width: "175px"});
		})
		.mouseout(function() {
			$(this).stop().parent().stop().end()
			.animate({ width: "175px", height: "50px" })
			.parent().animate({ width: "175px"});
		});
	});

	$(document).ready(function() {
		$(".can2").mouseover(function() {
			$(this).stop().parent().stop().end()
			.animate({ width: "175px", height: "300px" })
			.parent().animate({ width: "175px"});
		})
		.mouseout(function() {
			$(this).stop().parent().stop().end()
			.animate({ width: "175px", height: "50px" })
			.parent().animate({ width: "175px"});
		});
	});

	$(document).ready(function() {
		$(".can3").mouseover(function() {
			$(this).stop().parent().stop().end()
			.animate({ width: "175px", height: "300px" })
			.parent().animate({ width: "175px"});
		})
		.mouseout(function() {
			$(this).stop().parent().stop().end()
			.animate({ width: "175px", height: "50px" })
			.parent().animate({ width: "175px"});
		});
	});

