// JavaScript Document

$(function() {
	$('.wrap').hover(function() {
		$(this).children('.front').stop().animate({ "top" : '300px'}, 700);
	}, function() {
		$(this).children('.front').stop().animate({ "top" : '0'}, 400);
	});
});