		$(function(){
			$.superbox.settings = {
				closeTxt: "Fechar",
				loadTxt: "Carregando...",
				nextTxt: "Próximo",
				prevTxt: "Anterior"
			};
			$.superbox();
			//$(".galeria li a").prettyPhoto();
			$("a[rel^='prettyPhoto']").prettyPhoto();
			$('#btn_enviar').click(function(){$('#fomcon').submit();});
			$('#fomcon').submit(function() {
				
				$.ajax({
				   type: 'post',
				   url: 'website/envia_form.php',
				   data: $('#fomcon').serialize(),
				
				   beforeSend: function(){
				      $( "#enviando_contato" ).dialog({modal: true,});
				   },
				   success: function(data){
				      $( "#enviando_contato:ui-dialog" ).dialog( "destroy" );
				   	  if(data == '1') {
					      $( "#contato_enviado" ).dialog({modal: true, buttons: {Ok: function() {$( this ).dialog( "close" );}}});
					      $('#nome').val('');
					      $('#email').val('');
					      $('#telefone').val('');
					      $('#assunto').val('');
					      $('#mensagem').val('');
				   	  } else {
	  			          $('#contato_erro').dialog({modal: true, buttons: {Ok: function() {$( this ).dialog( "close" );}}});
	  			          $('#mensagem_erro').html(data);
				   	  }
				   },
				   error: function(erro){
				      $( "#enviando_contato:ui-dialog" ).dialog( "destroy" );
  			          $('#contato_erro').dialog({modal: true, buttons: {Ok: function() {$( this ).dialog( "close" );}}});
  			          $('#mensagem_erro').html(erro);
				   }
				});				
				return false;
			});
			
	
		});

