
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 ('Reception', 'mout'), navitem ('Reception', 'mover'), navitem ('Reception', 'mdown')],  'index.php',,
			[infobubl('Maleny Country Cottages Reception where you begin your journey to luxurious self-contained accomodation.')]
	],
	[[navitem ('Cottages', 'mout'), navitem ('Cottages', 'mover'), navitem ('Cottages', 'mdown')],  'cottages.php' ,,
		[infobubl('View the appointments and facilities you will find in our Cottages.')]
	],
	[[navitem ('Our&nbsp;Property', 'mout'), navitem ('Our&nbsp;Property', 'mover'), navitem ('Our&nbsp;Property', 'mdown')],  'environs.php' ,,
		[infobubl('The environment you will enjoy around your cottage and further afield on our 60-acre property when you stay at Maleny Country Cottages')]
	],
	[[navitem ('Packages', 'mout'), navitem ('Packages', 'mover'), navitem ('Packages', 'mdown')],  'packages.php' ,,
		[infobubl('Our Packages offer the best value holiday escapes for couples and families who value quality in a country setting and want to make the most of holiday dollars.')]
	],
	[[navitem ('Rates', 'mout'), navitem ('Rates', 'mover'), navitem ('Rates', 'mdown')],  'tariffs.php',,
		[infobubl('Accommodation Rates & Policies for your stay at Maleny Country Cottages.')]
	],
	[[navitem ('Enquiries', 'mout'), navitem ('Enquiries', 'mover'), navitem ('Enquiries', 'mdown')],  'enquiry.php',,
		[infobubl('Please use this form to make a reservation or discuss your requirements.')]
	],
	[[navitem ('Directions', 'mout'), navitem ('Directions', 'mover'), navitem ('Directions', 'mdown')],  'directions.php',,
		[infobubl('How to get to Our Cottages including the option to print out our printer-friendly mud map')]
	],
	[[navitem ('Contacts', 'mout'), navitem ('Contacts', 'mover'), navitem ('Contacts', 'mdown')],  'contacts.php',,
		[infobubl('Maleny Country Cottages contact details for phone, fax, mail, email .... whatever you prefer.')]
	],
	[[navitem ('feedback', 'mout'), navitem ('feedback', 'mover'), navitem ('feedback', 'mdown')],  'feedback.php',,
		[infobubl('Guests\' feedback - extracts from our cottages Guest Books - these comments are typical of the feedback we continually receive.')]
	],
	[[navitem ('email-a-friend', 'mout'), navitem ('email-a-friend', 'mover'), navitem ('email-a-friend', 'mdown')],  'shareoursite.php?' + url, {'tw': '_blank'},
			[infobubl('You can email a friend about this page. <br><br>A new window will open explaining how it works and asking for the information required to send the email. <br><br>We do not keep a record of any of this information in any shape or form.<br><br>')]
	]
];

function navitem ( text , state) {
	return '<table background="' +  'img/nav_button_' + state + '.gif" height=45 width=140 cellpadding=0 cellspacing=0 border="0"><tr><td align=center valign=middle class=""><span class="' + state + '">' +  text + '</span></td></tr></table>';
}
function infobubl (text) {
	return '<table height="10"width=250 class="infobubl" border="3"><tr><td width="250" class="infobubl">' + text + '</td></tr></table>';
}
