//Quando carregar
$().ready(function() {
	//Menu Site
	$('ul.menu li a').mouseover(function() {
	  $(this).find('.m1').stop();
	  $(this).find('.m2').stop();
	  $(this).find('.m2').animate({
		height: '60'
	  }, 500, function() {
	  });
	  $(this).find('.m1').animate({
		height: '32'
	  }, 300, function() {
	  });
	});
	$('ul.menu li a').mouseout(function() {
	  $(this).find('.m1').stop();
	  $(this).find('.m2').stop();
	
	  $(this).find('.m2').animate({
		height: '1'
	  }, 500, function() {
	  });
	  $(this).find('.m1').animate({
		height: '27'
	  }, 300, function() {
	  });
	});
	// Form Newsletter
	$("#form_news").validate({
		errorLabelContainer: $("#form_news div.erros"),
		submitHandler: function(form) {
   			form.action = "funcoes/cadastra_newsletter.php";
			obrigado();
			form.submit();
			
		}
	});
	$("#enviar_news").removeAttr("disabled"); 
	$("#container_content_o").css("opacity",0);
	
});
function obrigado(){
  $("#container_content_o").animate({ 
	opacity: 1,
	width: 294,
	height: 168
  }, 1500 );
  $("#container_content").animate({ 
	opacity: 0
  }, 1500 );
}
