$(function() {					 
		$("#contact").click(function(){
			var contHeight = $("#box_contact").height();
			if (contHeight == 0) {
				$("#box_contact").animate({"height":250}, 500);
				$("#contact").addClass("ativo");
				$("#socialmedia").removeClass("hide");
			}	else {
				$("#box_contact").animate({"height":0}, 500);
				$("#contact").removeClass("ativo");
				$("#socialmedia").addClass("hide");
			}
		});
		$("#contact").mouseover(function(){
			$("#contact").addClass("ativo");																					
		});		
		$("#contact").mouseout(function(){
			var contHeight = $("#box_contact").height();
			if (contHeight == 250) { return; }
			else { $("#contact").removeClass("ativo"); }
		});				
});