// JavaScript Document

function montraFolder(id, texto, tipo, lado){
	$('#'+id).mouseover(function(e){
//		$('#posicao').html((e.pageX + 20) + 'px' + e.pageY + 'px<br>' + (mouseX + 20) + 'px' + mouseY + 'px');
		$('#hintnoticia').html(texto);
		$('#hintnoticia').css('display', 'block');
		if(lado == 'E'){
			$('#hintnoticia').css('left', (e.pageX - 320) + 'px');
		}else{
			$('#hintnoticia').css('left', (e.pageX + 20) + 'px');
		}
		$('#hintnoticia').css('top', e.pageY + 'px');
	});
}

function ocultaFolder(id){
	document.getElementById(id).style.display = 'none';
}
//<div id="folder" style="position:absolute;z-index:100; display:none;"></div>
