// 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 = [
	[wrap('Home'), 'index.php', {'tw':'_top', 'tt':'Home', 'sb':'Home'}],

		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
	
	[wrap('Website Design'), 'gallery/web.php', {'tw':'_top', 'tt':'Website Design', 'sb':'Website Design'}],
	[wrap('Flash Animation'), 'gallery/flash.php', {'tw':'_top', 'tt':'Flash Animation', 'sb':'Flash Animation'}],
	[wrap('Advert Logo'), 'gallery/ad.php', {'tw':'_top', 'tt':'Advert Logo', 'sb':'Advert Logo'}],
	[wrap('Mobile Design'), 'gallery/mobile.php', {'tw':'_top', 'tt':'Mobile Design', 'sb':'Mobile Design'}],
	[wrap('Black n\' White'), 'gallery/bw.php', {'tw':'_top', 'tt':'Black n\' White', 'sb':'Black n\' White'}]
	
];


function wrap(caption) {if (caption == CURRENT_ITEM)return '<font color="#FFCC00"><b>' + caption + '</b></font>';elsereturn '<font color="white">' + caption + '</font>';}

