function returnData() {
	var month_nme = new Array("janeiro", "fevereiro", "mar&ccedil;o", "abril", "maio", "junho", "julho" ,"agosto", "setembro", "outubro", "novembro", "dezembro");

	var now = new Date();
	var nowDay = now.getDay();
	var nowDate = now.getDate();
		if (nowDate < 10) nowDate = '0' + nowDate;
	var nowMonth = now.getMonth();
	var nowYear = now.getFullYear();
	var nowTime = now.getTime();

	document.write( nowDate + ' de ' + month_nme[nowMonth] + ' de ' + nowYear );
}

$(document).ready(function() {
	$(".infomenu li a").click( function(){
	    $(".infomenu li a.active").removeClass("active");
	    $(this).addClass("active");
	    $("#info .conteudo div.active").removeClass("active").addClass("hide");
	    $("#info .conteudo ." + this.id).removeClass("hide").addClass("active");
	});
});
