function onover4description(obj, e,hint) {
        var x = 0, y = 0;
        if (!e) e = window.event;
        if (e.pageX || e.pageY) {
            x = e.pageX;
            y = e.pageY;
        } else if (e.clientX || e.clientY) {
            x = e.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft) - document.documentElement.clientLeft;
            y = e.clientY + (document.documentElement.scrollTop || document.body.scrollTop) - document.documentElement.clientTop;
        }
        var wind = document.getElementById(hint);
        wind.style.visibility = "visible";
        obj.style.cursor="pointer";
        wind.style.left = (x + 15) + "px";
        wind.style.top = (y - wind.offsetHeight) + "px";

    }

    function onout4description(hint) {
        var wind = document.getElementById(hint);
        wind.style.visibility = "hidden";
    }

var i = 500;
function scrollHor() {
    var ob = document.getElementById("hor");
    ob.style.left = i + "px";
    i = i - 1;
    if (parseInt(document.getElementById("hor").offsetWidth) + i < 0) {
        i = 500;
    }
    document.getElementById("hor").tt = setTimeout("scrollHor()", 20);
}


function featProv() {
    scrollHor();
    document.getElementById("hord").onmouseout = function() {
        document.getElementById("hor").tt = setTimeout("scrollHor()", 20);
    }

    document.getElementById("hord").onmouseover = function() {
        if (document.getElementById("hor").tt) {
            clearTimeout(document.getElementById("hor").tt);
        }
    }
}