var CURSOR_DEFAULT = 'default';
var CURSOR_HAND = "hand";
var CURSOR_POINTER = "pointer";

function GLoad(){
	x=LoadMap('map','Via Rolando Perino 55, Busano, Italia');
	x.zoom=9;
	x.description = "Parmec S.r.l.<br>Via Rolando Perino, 55 <br>10080 Busano (TO)";
	x.ShowMap();
}
			
function changeCursor(e)
{

	var o = $(e);

	var style = o.style.cursor;
	
	if (style == ""  || style == CURSOR_DEFAULT)
	{
		if (BrowserDetect.isIE){
			//alert('y');
			o.style.cursor=CURSOR_HAND;
		}	
		else{
			//alert('x');
			o.style.cursor=CURSOR_POINTER;
		}	
	}
	else
	{
		//alert('z');
		o.style.cursor= CURSOR_DEFAULT;
	}
}

function toggleHelp(id){
	if ($(id).style.display == 'none')
		$(id).style.display = '';
	else
		$(id).style.display = 'none';
}
