document.querySelector("#slideshow #arrow-p").addEventListener("mouseenter", function () {
this.style.backgroundPosition = "left bottom";
}, false);
document.querySelector("#slideshow #arrow-p").addEventListener("mouseout", function () {
this.style.backgroundPosition = "top left";
}, false);