// alert("menu.js loaded");

var cursorText = new Array("Back to the Home port","Learn more about Treasure Fleet","Learn about the iPhone App","Plunder our store for a few pieces of eight.","Listen up maties, ye can read the latest SoFG news here.","Find our games at your local ports.","Information about the company, its designers and artists.");
var cursorTextWidth = new Array(80, 120, 90, 90, 100, 110, 110);
		
function Show(){
	e = arguments[0];
	index = arguments[1];			
		
	document.getElementById("cursorFlagText").innerHTML = cursorText[index];			
	document.getElementById("cursorFlagText").style.width = cursorTextWidth[index];
	x = e.clientX + document.body.scrollLeft + 12;
	y = e.clientY + document.body.scrollTop + 18;
	document.getElementById("cursorFlag").style.display="block";
	document.getElementById("cursorFlag").style.left = x;
	document.getElementById("cursorFlag").style.top = y;
}

function Hide(){
	document.getElementById("cursorFlag").style.display="none";
}
