var tWidth='350px';                  // width (em pixels)

var tHeight='18px';                  // height (em pixels)

var tcolour='transparent';           // cor do background:

var moStop=true;                     // pausar com mouse em cima (true ou false)

var tSpeed=2;                        // velocidade do scroll (1 = devagar, 5 = rapido)



document.writeln('<link href="scripts\/ticker.css" rel="stylesheet" type="text\/css" \/>');



// coloque o conteudo do ticker aqui (use \/ e \' no lugar de / e ' respectivamente)

var content='<a href="http:\/\/www.jograf.com.br\/escrever_bem.htm">Saiba como escrever bem, veja algumas dicas<\/a><a href="http:\/\/www.jograf.com.br\/jograf\/?ticketjograf" target="_blank">Visite nossa Loja Virtual<\/a><a href="http:\/\/www.jograf.com.br\/trocando_letras.htm">Não ipomtra em qaul odrem...<\/a><a href="http:\/\/www.iarapoesias.com.br\/?ticketjograf" target="_blank">Ofereça poesias e mensagens em seu site<\/a><a href="http:\/\/www.compraevendaimoveis.com.br\/?ticketjograf" target="_blank">Classificado gratuíto de anúncio de Imóveis<\/a><a href="http:\/\/www.jograf.com.br\/\grafica\/?ticketjograf" target="_blank">Visite nossa Loja Virtual<\/a><a href="http:\/\/www.jograf.com.br\/escrever_bem.htm">Saiba como escrever bem, veja algumas dicas<\/a><a href="http:\/\/www.jograf.com.br\/grafica\/?ticketjograf" target="_blank">Visite nossa Loja Virtual<\/a>';



// Simple Marquee / Ticker Script



var cps=tSpeed;

var aw, mq;

var fsz = parseInt(tHeight) - 4;

function startticker(){if (document.getElementById) {var tick = '<div style="position:relative;margin:0 auto;width:'+tWidth+';height:'+tHeight+';overflow:hidden;background-color:'+tcolour+'"'; if (moStop) tick += ' onmouseover="cps=0" onmouseout="cps=tSpeed"'; tick +='><div id="mq"><\/div><\/div>'; document.getElementById('ticker').innerHTML = tick; mq = document.getElementById("mq"); mq.style.left=(parseInt(tWidth)+10)+"px"; mq.innerHTML='<span id="tx">'+content+'<\/span>'; aw = document.getElementById("tx").offsetWidth; lefttime=setInterval("scrollticker()",50);}} function scrollticker(){mq.style.left = (parseInt(mq.style.left)>(-10 - aw)) ?parseInt(mq.style.left)-cps+"px" : parseInt(tWidth)+10+"px";} window.onload=startticker;