$(document).ready(function(){
	$('.dslide').hover(function(){
		$(this).children('.front').stop().animate({'top':'-320px'}, 300);
	}, function(){$(this).children('.front').stop().animate({'top':'0'}, 300);});
});
