$(document).ready(function(){
	$('div.team_overflower').hover(
		function(){
			$(this).children('div.overlay_trans').stop().animate({
				'top': '18px'			
			},{
				queue: false,
				duration: 300
			});
		}
	);
	
	$('div.overlay_trans').hover(
		function(){
			// Empty
		},
		
		function(){
			$(this).animate({
				'top': '249px'			
			},{
				queue: false,
				duration: 300
			});
		}
	);
	
	$('ul#team_list').hover(
		function(){
			// Empty
		},
		
		function(){
			$('div.overlay_trans').animate({
				'top': '249px'			
			},{
				queue: false,
				duration: 300
			});
		}
	);
});
