
function hover(o, className){
	if(document.getElementById){
		document.getElementById(o).className = className;
		document.getElementById(o).style.cursor = 'hand';
		}
}
function navigateTo(url)
{
	window.navigate(url);
}

