$(document).ready(function() 
{
    
	$(".video_overview").children("div.video_title").animate({top: -164}, 0);
	$(".video_overview").children("div.video_overlay").animate({bottom: -165}, 0);
    
$(".video_overview").hover(
		function()
		{
			$(this).children("div.video_title").stop().animate({top: 0}, 700, "easeOutBounce");
			$(this).children("div.video_overlay").stop().animate({bottom: 0}, 700, "easeOutBounce");
		},
		function(){
			$(this).children("div.video_title").stop().animate({top: -164}, 500);
			$(this).children("div.video_overlay").stop().animate({bottom: -165}, 400);
		}
		);
	
}); 
