// Funções gerais

	//Realiza uma chamada AJAX a uma página
	function getContent(htmlPath){
		$.ajax({
			url: htmlPath,
			async: true,
			global: false,
			type: "GET",
			dataType: "html",
			success: function(msg) {
				loadContent(msg);
			},
			error: function() {
				alert('erro');
			}
        });
	}
	
	//Carrega o conteúdo da página requisitada
	function loadContent(htmlContent){
		$('#conteudoContent').html(htmlContent);
	}
