    $(function() {
        $('.wrap').hover(function() {
            $(this).children('.front').stop().animate({ "top" : '300px'}, 700);   
        }, function() {
            $(this).children('.front').stop().animate({ "top" : '14px'}, 400);       
		});
		$('.imm').show(2000).animate({ top: '+=100', top: '100px' }, 2000);
		
		$('.imm').hover(function() {
		$('.d5').show(3000);$('.d4').show(2500);$('.d3').show(2000);$('.d2').show(1500);$('.d1').show(1000);
		}, function() {
		$('.d5').fadeOut(4000); $('.d4').fadeOut(4500); $('.d3').fadeOut(5000); $('.d2').fadeOut(5500); $('.d1').fadeOut(6000);
		})
    });
