// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	
	['Home', '../../index.html', {'tw':'_top'}],
		// this is how item scope settings are defined
	['Rentals', '../../rentals.html', {'tw':'_top'}],
	['Buyers', '../../buyers.html', {'tw':'_top'}],
	['Sellers', '../../sellers.html', {'tw':'_top'}],
	['Agents', '../../agents.html', {'tw':'_top'}],
	['Blog', '../../blog.html', {'tw':'_top'}],
	['About Us', '../../aboutus.html', {'tw':'_top'}]
];


