function lmover(elem)
{
elem.style.backgroundColor = '#CBB49E';
elem.style.cursor = 'hand';
}

function lmout(elem)
{
elem.style.backgroundColor = '';
}

function clicker(elem, where)
{
// alert(elem);
window.location.href = where;
}