$(function(){
	// Hover function
	$('.video-box').mouseenter(function(){
		$(this).find('.overlay').animate({'top' : '0px'}, 300);
	});
	
	$('.overlay').mouseleave(function(){
		$(this).animate({'top' : '200px'}, 200);
	});	
	
	$('.video-box').mouseleave(function(){
		$(this).find('.overlay').animate({'top' : '200px'}, 200);
	});	
});
