$(function() {
$(".teamOverlay").css("opacity","1");

	$(".teamAnimate").hover(function () {
	 
		$(".teamOverlay", this).stop().animate({
		   opacity: 0.0
		}, 200);
		
		$(".teamItemPhoto", this).stop().animate({ 
           marginLeft: "0px",
		   opacity: 1
        }, 500 );

	},
	function () {
	 
		$(".teamOverlay", this).stop().animate({
		   opacity: 1
		}, 200);
		
		$(".teamItemPhoto", this).stop().animate({ 
           marginLeft: "500px",
		   opacity: 0.0
        }, 500 );
		
	});
});
