// JavaScript Document

$(document).ready(function(){
    $(".contato").click(function(){
      $("#ContatoContainer").show();
      $("#ContatoContainer").animate({ 
        width: "420",
        height: "425",
        opacity: 0.9
      }, 1500);
      $("#BtnFechar").show('fast');
      $("#IFContato").show(1500);
    });

    $("#BtnFechar").click(function(){
      $("#IFContato").hide('slow');
      $("#ContatoContainer").animate({ 
        width: "1",
        height: "425",
        opacity: 0
      }, 1500, function(){
		  $("#BtnFechar").hide();
	      $("#ContatoContainer").hide();
		  });
    });
  $('a[rel=external]').attr('target', '_blank');
});