function exibeCloud() {
	$.ajax({
		type : 'GET',
		url : 'cloud/',
		success : function(data){
			$('#nuvem_tag').html(data);
		}
	});
}

