var x = 1;
var pole = new Array("SATELITNÁ TV BEZ POPLATKOV","PREDAJ A SERVIS PC ZA SKVELÉ CENY", "TVORBA WEBU","VYSOKORÝCHLOSTNÝ BEZDRÔTOVÝ INTERNET");
var pole2 = new Array("sluzby-tv-index","sluzby-pc","sluzby-web","sluzby-internet-index");
var index = 0;

function pozadie()
{
    document.getElementById("premietacka").style.backgroundPosition = x+"px";
    x=x+2;
}

function pozadie_minus()
{
    document.getElementById("premietacka").style.backgroundPosition = x+"px";
    x=x-2;
}

function napis()
{
    document.getElementById("premietacka").innerHTML = "<a href='?route=article/show/"+pole2[index]+"'>"+pole[index]+"</a>";
    index++;
    if(index>3)
    {
        index = 0;
    }
}

function resx()
{
   x = 1;
}

premietanie = setInterval("pozadie()","25");
text = setInterval("napis()","2000");
vymazx = setInterval("resx()", "180000");
