$().ready(function(){
    var date = new Date();
	day = date.getDate();
	month = date.getMonth();
	year = date.getFullYear();

	month_array = new Array(12);

	month_array[0] = "Janeiro";
	month_array[1] = "Fevereiro";
	month_array[2] = "Março";
	month_array[3] = "Abril";
	month_array[4] = "Maio";
	month_array[5] = "Junho";
	month_array[6] = "Julho";
	month_array[7] = "Agosto";
	month_array[8] = "Setembro";
	month_array[9] = "Outubro";
	month_array[10] = "Novembro";
	month_array[11] = "Dezembro";

    $('#date').text("São Paulo, " + day + " de " + month_array[month] + " de " + year);

    // clima tempo
    $('#climatempo_link').click(function(){
		$('#climatempo').toggle();
	});
});