$(function() {
	$('.sliderwrap.box').hover(function() {
	
		$(this).children('.caption, .caption_m').stop().animate({"top" : '0px'}, 400);
		$(this).children('.caption_xl').stop().animate({"top" : '0px'}, 400);
	
	}, function() {
		$(this).children('.caption, .caption_m').stop().animate({"top" : '190px'}, 800);
		$(this).children('.caption_xl').stop().animate({"top" : '390px'}, 800);									
	});
 });
	
