jQuery(function($){
	var $target = $(".box-ambientes .exibe-ambientes a"),
	    $targetSpan = $target.children("span"),
		$targetNomeAmbiente = $(".box-ambientes .nome-ambiente");
		
	$targetSpan.css("opacity", 0);
	
    $($target).mouseenter(function(){
		$targetSpan.stop().animate(
			{ top: 0, opacity: 1 },
			{
				duration: 300,
				easing: 'easeOutBack'
			}
		);
		$targetNomeAmbiente.stop().animate(
			{ bottom: 0 },
			{
				duration: 200,
				easing: 'easeOutCubic'
			}
		);
    }).mouseleave(function(){
        $targetSpan.stop().animate(
			{ top: -30, opacity: 0 },
			{
				duration: 300,
				easing: 'easeInBack'
			}
		);
		$targetNomeAmbiente.stop().animate(
			{ bottom: -63 },
			{
				duration: 200,
				easing: 'easeOutCubic'
			}
		);
    });
});
