// JavaScript Document

$(document).ready(function() {
		
					$(this).find(".text").find(".descr").stop().animate({ marginTop: "40"},100)

		$("#empresasGrupo .empGp").hover(function() {
			
			$(this).find(".text").find(".descr").stop().animate({  marginTop: "20"},200)
		    $(this).find(".anima").stop().animate({  height:"300px" }, 300);
			$(this).find(".text").stop().animate({ top: "-205" }, 200);

		},function(){
			
			$(this).find(".text").find(".descr").stop().animate({ marginTop: "40"},100)
		    $(this).find(".anima").stop().animate({ height:"10px"}, 300);
			$(this).find(".text").stop().animate({ top: "0"}, 200);
		});
});
