function detalhes(id){
	$.ajax({
		type: "GET",
		url: "ajax.php?detalhes=1&idCarro="+id,
		cache: false,
		dataType: "html",
		success: function(msg){
			$("#listaDetalhes").html(unescape(msg));
			$(".detalhesCarro").show();
		}
	});
}
