// 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', 'main.html', {'tw':'main'}],
	['Artworks', 'jgal/', {'tw':'main'}],
    ['Guestbook', 'gb/entries.php', {'tw':'main'}],
	['My Artpost', 'http://www.abc.net.au/tv/artpost/profile.htm?id=404035&uname=arizona59', {'tw':'_blank'}],
	['Crystals', 'crystals/crystal.htm', {'tw':'main'}],
	['Contact Me', 'javascript:open(\'mailto:' + 'gecko81' + '@' +  'optusnet.com.au?subject=Artwork_Enquiry\')', {'tw':'_blank'}],
	['My Links', 'links.html', {'tw':'main'}],
];


