var news = new Array(
[],
[ "28/11/2009" , "13h30" , "Mais de 10 mil pessoas continuam fora de suas casas no RS" , "http://www1.folha.uol.com.br/folha/cotidiano/ult95u658955.shtml" ] ,
[ "28/11/2009" , "13h17" , "Por quê?" , "http://www1.folha.uol.com.br/folha/pensata/luizcaversan/ult513u658954.shtml" ] ,
[ "28/11/2009" , "13h09" , "São Paulo aposta em time equilibrado e retrospecto contra o Goiás" , "http://www1.folha.uol.com.br/folha/esporte/ult92u658943.shtml" ] ,
[ "28/11/2009" , "13h06" , "Falha em avião com Tarso Genro não representou risco, diz companhia" , "http://www1.folha.uol.com.br/folha/brasil/ult96u658953.shtml" ] ,
[ "28/11/2009" , "13h01" , "Novo livro de Dan Brown chega à primeira posição entre os mais vendidos" , "http://www1.folha.uol.com.br/folha/livrariadafolha/ult10082u658939.shtml" ] ,
[]
) ;
//--></script>

function monta_em_cima_da_hora(){
	var t ;
	var html = "" ;
	html += "<div class=\"blocks\">" ;
	html += "<p class=\"ch1\">FOLHA ONLINE<br>" ;
	html += "EM CIMA DA HORA<\/p>" ;
	html += "<ul class=\"li2\">" ;
	for( var i=1; i<news.length-1; i++ ){
		t = news[i][2] ;
		t = t.replace( /\&quot;/gi, "\"" ) ;
		t = t.replace( /\&amp;/gi, "&" ) ;
		t = t.replace( /\&#039;/gi, "'" ) ;
		news[i][2] = t ;
		if( news[i][0] == news[i-1][0] ){
			html += "<li><b>" + news[i][1] + "<\/b> <a href=\"" + news[i][3] + "\">" + news[i][2] + "<\/a><\/li>" ;
		}else{
			html += "<li><b>" + news[i][0] + "</b><br><b>" + news[i][1] + "<\/b> <a href=\"" + news[i][3] + "\">" + news[i][2] + "<\/a><\/li>" ;
		}
	}
	html += "<\/ul>" ;
	html += "<br><a href=\"http://www.folha.uol.com.br/folha/emcimadahora/\">Mais notícias<\/a>" ;
	html += "<\/div>" ;
	return html ;
}
document.write( monta_em_cima_da_hora() ) ;