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