window.onload = function(e){
	mostraFlash("menu", "/media/swf/menu.swf?secao=dicas&idioma="+$('language').value, "100%", 310,["allowscriptaccess"], ["always"]);
	mostraDicas();
}

function mostraDicas(){
	
	var xml = new xmlConnection();
	if (xml.create()){
		//xml.setURL('/lupo/mostrarDicas/');
		xml.setURL('/mostrarDicas/');
		xml.setMethod('GET');
		xml.add('nocache',nocache());
	}
	xml.onComplete = function() {
		this.setChildName('dica');	
		var numItens = this.getCountItens();		
		var html = '';
		for (var j=0; j<numItens; j++) {
			
			html += '<div style="height:200px; overflow:hidden;" id="itemDica">';
			html += '	<div class="blocoDica">';
			html += '		<div style="margin-top:15px; margin-left:8px;" id="numeroDicas"></div>';
			html += '		<div style="font:bold 10px Arial; color:#7d7e78; margin-left:30px; margin-top:-18px; ">'+this.getAttByName('titulo',j)+'</div>';
			html += '		<div id="imagemDica" style="margin-left:8px; margin-top:4px; background-image:url(\'/media/'+this.getAttByName('thumb',j)+'\'); background-repeat:no-repeat; width:209px; height:85px; cursor:pointer;" onclick="location.href=\'/dicas/'+this.getAttByName('slug',j)+'/\'"></div>';
			html += '		<div style="font:normal 11px Arial; color:#7d7e78; margin-left:20px; margin-top:7px; letter-spacing:0.9px;">'+this.getAttByName('resenha',j)+'</div>';
			html += '	</div>';
			html += '</div>';
			
			
		}
		$('todasDicas').innerHTML = html;
	}
	xml.execute();	
}