function toggleItem( nRule )
{
	thisRule = document.styleSheets[0].rules( nRule );
	if ( thisRule.style.display == "block" )
	{
		thisRule.style.display = "none";
	}
	else
	{
		thisRule.style.display = "block";
	}
}
function toggleTask( nItem )
{
	var thisTask = "Task" + nItem ;
	var thisItem = document.all.item( thisTask );
	if ( thisItem.style.display == "block" )
	{
		thisItem.style.display = "none";
	}
	else
	{
		thisItem.style.display = "block";
	}
}

function toggleAccomodationFeature( nItem )
{
	var thisTask = "AccomodationFeature" + nItem ;
	var thisItem = document.all.item( thisTask );
	if ( thisItem.style.display == "block" )
	{
		thisItem.style.display = "none";
	}
	else
	{
		thisItem.style.display = "block";
	}
}

function toggleNearbyAttraction( nItem )
{
	var thisTask = "NearbyAttraction" + nItem ;
	var thisItem = document.all.item( thisTask );
	if ( thisItem.style.display == "block" )
	{
		thisItem.style.display = "none";
	}
	else
	{
		thisItem.style.display = "block";
	}
}


function toggleRoom( nItem )
{
	var thisTask = "Room" + nItem ;
	var thisItem = document.all.item( thisTask );
	if ( thisItem.style.display == "block" )
	{
		thisItem.style.display = "none";
	}
	else
	{
		thisItem.style.display = "block";
	}
}


function toggleGettingThere( nItem )
{
	var thisTask = "GettingThere" + nItem ;
	var thisItem = document.all.item( thisTask );
	if ( thisItem.style.display == "block" )
	{
		thisItem.style.display = "none";
	}
	else
	{
		thisItem.style.display = "block";
	}
}

function toggleNews( nItem )
{
	var thisTask = "News" + nItem ;
	var thisItem = document.all.item( thisTask );
	if ( thisItem.style.display == "block" )
	{
		thisItem.style.display = "none";
	}
	else
	{
		thisItem.style.display = "block";
	}
}

function StatusClickMsg()
{
	window.status = "Click to toggle visibility";
}

