//CONFIGURE MESSAGES AND VARIABLES var tickercontents=new Array(); tickercontents[0]='
Novi sad - Grbavica
Tip nekretnine: stan
Kvadratura: 121.0m2
Cena: 128.750 EUR
Detaljnije
'; tickercontents[1]='
Novi sad - Socijalno ...
Tip nekretnine: stan
Kvadratura: 84.0m2
Cena: 82.400 EUR
Detaljnije
'; tickercontents[2]='
Novi sad - Sajam
Tip nekretnine: stan
Kvadratura: 62.0m2
Cena: 72.900 EUR
Detaljnije
'; tickercontents[3]='
Novi sad - Suboticki ...
Tip nekretnine: stan
Kvadratura: 66.0m2
Cena: 72.100 EUR
Detaljnije
'; tickercontents[4]='
Novi sad - Stara dete...
Tip nekretnine: stan
Kvadratura: 57.0m2
Cena: 46.350 EUR
Detaljnije
'; tickercontents[5]='
Novi sad - Bulevar
Tip nekretnine: stan
Kvadratura: 53.0m2
Cena: 51.500 EUR
Detaljnije
'; tickercontents[6]='
Novi sad - Zeleznicka...
Tip nekretnine: stan
Kvadratura: 32.0m2
Cena: 30.900 EUR
Detaljnije
'; tickercontents[7]='
Novi sad - Podbara
Tip nekretnine: stan
Kvadratura: 26.0m2
Cena: 28.840 EUR
Detaljnije
'; var tickerwidth="180px"; var tickerheight="150px"; var fontcss="font-size: 12px; font-weight: normal; font-family: Verdana; color: #333333;"; var tickdelay=5000; //delay btw messages var highlightspeed=2; //2 pixels at a time. var backdroptextcolor="#fff"; ////Do not edit pass this line//////////////// document.write(''); document.write('
Aktuelno
'); document.write(''); document.write('
'); var currentmessage=0; var clipbottom=1; function changetickercontent(){ msgheight=clipbottom=crosstick.offsetHeight; crosstick.style.clip="rect("+msgheight+"px auto auto 0px)"; crosstickbg.innerHTML=tickercontents[currentmessage]; crosstick.innerHTML=tickercontents[currentmessage]; highlightmsg(); } function highlightmsg(){ //var msgheight=crosstick.offsetHeight if (clipbottom>0){ clipbottom-=highlightspeed; crosstick.style.clip="rect("+clipbottom+"px auto auto 0px)"; beginclip=setTimeout("highlightmsg()",20); } else{ clipbottom=msgheight; clearTimeout(beginclip); if (currentmessage==tickercontents.length-1) {currentmessage=0;} else {currentmessage++;} setTimeout("changetickercontent()",tickdelay); } } function start_ticking(){ crosstickbg=document.getElementById? document.getElementById("highlighterbg") : document.all.highlighterbg; crosstick=document.getElementById? document.getElementById("highlighter") : document.all.highlighter; crosstickParent=crosstick.parentNode? crosstick.parentNode : crosstick.parentElement; if ("parseInt(crosstick.offsetHeight)">0){ crosstickParent.style.height=crosstick.offsetHeight+'px';} else{ setTimeout("crosstickParent.style.height=crosstick.offsetHeight+'px'",100); //delay for Mozilla's sake changetickercontent();} } if (document.all || document.getElementById) { window.onload=start_ticking;}