window.onload = function() {
var cont = document.body;
cont.innerHTML = cont.innerHTML + '<div id="button_up"></div>';
var pic = new Image();
pic.src = "static.png";
pic.id = "arrow";
var button = document.getElementById('button_up');
button.appendChild(pic);
button.style.position = 'fixed';
button.style.bottom = '20px';
button.style.right = '15px';
button.style.zIndex = '1000';
document.getElementById('arrow').onmouseover = function() {
pic.src = "onMouseOver.png";
};
document.getElementById('arrow').onmouseout = function() {
pic.src = "static.png";
};
document.getElementById('arrow').onclick = function() {
};
document.getElementById('arrow').onmouseover = function() {
pic.src = "onMouseOver.png";
};