// JavaScript Document

function over(element) {
element.style.backgroundColor = "#434331"
element.style.cursor = "hand";
}

function out(element) {
element.style.backgroundColor = "";
element.style.cursor = "default";
}
