var SITE = window.location;

$(document).ready(function(){
		
	$('.controles a').address(function() {  
		return $('.anuncio img.current').attr('title');
	});
	
		$('.controles a').address(function() {  
		return $('.fotos img.current').attr('title');
	});
	
	$('#contato').submit(function(event){
		
		
			var dados = $('#contato').serialize();
			
			$.ajax({
				header: {
					"Content-Type": "text/html;  charset=ISO-8859-1"
				},
				type: "get",
				data: "acao=contato&" + dados,
				url: "ajax.php",
				dataType: "html",
				success: function(valor){
					// Preenche a tabela com os dados
					$('.retornoContato').html(valor);
					return true;
				}
			});
		
		
		return false;
	});
	$('#indique').submit(function(event){
		
			var dados = $('.indEmail').val();			
			
			$.ajax({
				header: {
					"Content-Type": "text/html;  charset=ISO-8859-1"
				},
				type: "get",
				data: "acao=indique&email=" + dados,
				url: "ajax.php",
				dataType: "html",
				success: function(valor){
					// Preenche a tabela com os dados
					$('.retornoIndique').html(valor);
					return true;
				}
			});
		
		
		return false;
	});
	
	$("#cont_tip").tooltip({
		effect: 'slide',
		offset: [80, 0],
		position: 'top left',
		relative: true
	});
	
});

