var booSearch = true;

function rollOver(cell)
{
	cell.style.backgroundImage = 'url(images/nav_on.gif)';
	cell.style.cursor = 'hand';
}
function rollOut(cell)
{
	cell.style.backgroundImage = 'url(images/nav_off.gif)';
}