/* BANDEIRA QUE SEGUE O MOUSE */
$(document).ready(function() {
xOffset=30; yOffset=10;
$("*[title]").hover(function(e){
this.t=this.title;
$(this).removeAttr("title");
this.alt = "";
$("body").append("<p id='tooltip'>"+ this.t +"</p>");
$("#tooltip")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px")
.fadeIn('fast');
},function(){
this.title = this.t;
$("#tooltip").remove();
});
$("*[title]").mousemove(function(e){
$("#tooltip")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px");
});
});
moveContent = function(nameDivOas, nameDivOasDisplay) {
$(nameDivOas).appendTo(nameDivOasDisplay);
}

function WriteAutor(nome){
if (tbEm[nome]!=null){
$('.autor').prepend(nome+' <a href="mailto:'+tbEm[nome]+'">('+tbEm[nome]+')</a>');
}else{
$('.autor').prepend(nome+' <a href="mailto:'+mR+'">('+mR+')</a>');
}}

function WriteAutorGestao(nome_gestao){
var mG="gestao@atleitor.com.br";
var tbg=new Array();
if (tbg[nome_gestao]!=null){$('.autor').prepend(nome_gestao+' <a href="mailto:'+tbg[nome_gestao]+'">('+tbg[nome_gestao]+')</a>');
}else{
$('.autor').prepend(nome_gestao+' <a href="mailto:'+mG+'">('+mG+')</a>');
}}
function AbrirMultimidia(val){var width=screen.width; var height=screen.height; window.open('/swf/jogos/exibi-jogo.shtml?'+val,'Jogos', 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height);}
function AbrirAnima(val){ var width = screen.width; var height = screen.height; window.open('/swf/animacoes/exibi-animacao.shtml?'+val,'Animacao', 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height);}
function Comente(val){var width=600; var height=500; window.open('/comentario/'+val+'_comente.shtml','Comente', 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height);}
function Open_Popup(End,Nome,Conf){window.open(End,Nome,Conf);}
function Imprima(){window.open('/imprima-essa-pagina.shtml','Imprima','toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=800,height=600');}