function roPointer(status)
{
	if(status == "over")
	{
		document.body.style.cursor = "pointer";
	
	} else {
		
		document.body.style.cursor = "default";
	}
}

