function showInstructions()
{
content.innerHTML = '<table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" align="right"><br /><img src="../images/arrow1.gif"></td><td class="T10"><br />Point to any of the amenities listed to the left to find out information about each one. Click to go there.</td></tr></table>';
}

function resetContent(it)
{
it.style.color = 'black'; 
it.style.textDecoration = 'none'; 
showInstructions();
}

function toggleLink(it)
{
if ( (it.style.color == 'steelblue') && (it.style.textDecoration == 'underline') )
	{
	it.style.color = 'black';
	it.style.textDecoration = 'none';
	}
else
	{
	it.style.color = 'steelblue';
	it.style.textDecoration = 'underline';
	}
}

function showInfo(it, img, width, title, text)
{
it.style.color = 'steelblue';
it.style.textDecoration = 'underline';
content.innerHTML = '<br /><span class="T10"><B>' + title + '</b></span><br /><img srC="../images/edtbluepixel.gif" width="100%" height="1"><br /><table border="0" cellpadding="5"><tr><td valign="top"><img src="' + img + '" width="' + width + '"></td><td valign="top" class="T10">' + text + '</td></tr></table>';
}
