function cursorOver()
{
document.body.style.cursor = 'pointer';
}

function cursorOut()
{
document.body.style.cursor = 'default';
}
