var obrazekW = 550;
var obrazekH = 31;
var przesuwajwlewo = 1;
var xp = 0;
var msoval = 1;
var isIe = (navigator.userAgent.indexOf('MSIE') >= 0) ? 1 : 0;
function updobr()
{
    if (msoval) if (przesuwajwlewo) xp--; else xp++;
    if (xp >= obrazekW) xp -= obrazekW;
    if (xp < 0) xp += obrazekW;
    document.getElementById("obrazekcont2").style.backgroundPosition = xp+"px 0";
    if (isIe)
    {
        document.getElementById("obrazekcont2").style.top = (document.documentElement.clientHeight || document.body.clientHeight)+(document.documentElement.scrollTop || document.body.scrollTop)-obrazekH;
    }
    setTimeout("updobr();", 50);
}
function obrazekli()
{
    var obrazekLink = "http://outletcenter.com.pl/kategorie/o_nas";
    document.location = obrazekLink;
}
function startupdobr() {
    var obrazekAdres = "http://outletcenter.com.pl/img/welcome.gif";
    document.getElementById("obrazekcont").innerHTML
    = "<div id=\"obrazekcont2\" style=\"background:url("+obrazekAdres+") "
    +xp+"px 0;width:100%;height:"+obrazekH
    +"px;position:"+(isIe?"absolute":"fixed")+";left:0;"+(isIe?"top":"bottom")+":0;z-index:9000;cursor:pointer\" onclick=\"obrazekli();return true;\" onmouseover=\"msoval=0;\" onmouseout=\"msoval=1;\"> </div>";
    updobr();
}
