function cssRollover(obj, posX, posY) {
    if (typeof obj == "string") {
        obj = document.getElementById(obj);
    }
    obj.style.backgroundPosition = posX + "px " + posY + "px";
}
