/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/

var url = document.location;


//  navitems first field specs 3 mouse states as: [navitem ('', 'mout'), navitem ('', 'mover'), navitem ('', 'mdown')] caption goes in ''
var MENU_ITEMS = [
	
	[[navitem ('General', 'mout'), navitem ('General', 'mover'), navitem ('General', 'mdown')], 'index.php' ,,
		['website Home Page','index.php' ,,
			[infobubl('<span class="h3">Home page</span><br>Introduction and description of the information available on this website - the &#8220;Site Map&#8221;.')]],
		['Property Frontview','frontview.php' ,,
			[infobubl('<span class="h3">Panoramic View</span><br>A 360<sup>o</sup> from across the lake showing the front of the property and what it faces - its around 2MB so if you are using a dial-up connection please be aware it may take some time to download.')]],
		['Property Overview','overview.php' ,,
			[infobubl('<span class="h3">Birds-eye View</span><br>A satellite view of Middle Path showing the locations of various features.')]]
/*	
	,	['Sunshine Coast Info','sunshinecoast.php' ,,
			[infobubl('<span class="h3">About the Sunshine Coast</span><br>Some resources where you can discover more about the Sunshine Coast and what it offers.')]],
		['Maleny Info','maleny.php' ,,
			[infobubl('<span class="h3">About Maleny</span><br>Some resources where you can discover more about Maleny and what it offers.')]]
*/
	],		
	[[navitem ('Buildings', 'mout'), navitem ('Buildings', 'mover'), navitem ('Buildings', 'mover')], '' ,,
		['Main aka &#8220;The Temple&#8221;','temple.php' ,,
			[infobubl('<span class="h3">The Main Building</span><br>We have come to call this the &#8220;Temple&#8221 - if you are at all sensitive to earth energies and sacred spaces you will know why once you visit.')]],
		['Outbuildings','outbuildings.php' ,,
			[infobubl('<span class="h3">The Sheds</span><br>Over time we built sheds to accommodate all the paraphernalia needed to keep 5 acres in good trim - and to create spaces for various tasks and pursuits.')]]
	],	
	[[navitem ('Features', 'mout'), navitem ('Features', 'mover'), navitem ('Features', 'mover')], '' ,,
		['The land', 'land.php' ,,
			[infobubl('<span class="h3">The Land</span><br>There is a lot of diverse character packed into these 5+ acres - this page will show you some of the major features.')]],
		['Wildlife','wildlife.php' ,,
			[infobubl('<span class="h3">Wildlife</span><br>we were one of the first officially-designated Land for Wildlife properties in the shire. Here is a catalog of the visitors we have been able to photograph.')]]
/*	
,
		['The Climate','climate.php' ,,
			[infobubl('<span class="h3">The Climate</span><br>some details about the local climate - of course these look like they may be subject to change.')]]
*/
		
	],
		
	[[navitem ('Contact', 'mout'), navitem ('Contact', 'mover'), navitem ('Contact', 'mdown')], 'contact-the-owners.php' ,,
		[infobubl('<span class="h3">Contact Details and Enquiries</span><br>Have some questions - want to arrange to look at the property? Here is where you can get in touch .')]
	],	
];

function navitem ( text , state) {
	return '<table background="img/navbutton' + state + '.gif" height=28 width=110 cellpadding=0 cellspacing=0 border="0"><tr><td align=center valign=middle><span class="' + state + '">' +  text + '</span></td></tr></table>';
}

function infobubl (text) {
	return '<table height="10"width=220 cellpadding="10" cellspacing="0" border="2" bordercolor="#990033" bordercolordark="#660033" bordercolorlight="#cc0000"><tr><td width="200" class="infoblock"><div class="infoblock">' + text + '</span></div></td></tr></table>';
}
function infoblck (text) { // this is only used in the top page navigation menu item
	return  '<table height=300 width=290 cellpadding="5" cellspacing="0" border="2"><tr><td width="290" class="infoblock"><div class="infoblock">' + text + '</div></td></tr></table>';
}
/* 
,
		['Menu Item Text', 'URL',,
			[infobubl('Expanded description')]]
*/