function over(id)
{
document.getElementById(id).style.cursor = 'pointer';
}

function out(id)
{
document.getElementById(id).style.cursor = 'default';
}