// JavaScript Document
function changeOverCursor() {
document.getElementById('boxImage').style.cursor='hand';
}
function changeOutCursor() {
document.getElementById('boxImage').style.cursor='default';
}

