// 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_ITEMS02 = [
	[wrap('Rainbow'), 'gallery/rainbow.php', {'tw':'_top', 'tt':'Rainbow', 'sb':'Rainbow'}],
	[wrap('Song Lyrics'), null, {'tt':'Song Lyrics', 'sb':'Song Lyrics'},
		['Anime', 'song/anime.php', {'tw':'_top', 'tt':'Manual', 'sb':'Manual'}],
		['JDrama', 'song/jdrama.php',{'tw':'_top', 'tt':'Digital', 'sb':'Digital'}]
	],
	[wrap('Profile'), 'profile.php', {'tw':'_top', 'tt':'Profile', 'sb':'Profile'}],
	[wrap('Contact'), 'contact.php', {'tw':'_top', 'tt':'Contact', 'sb':'Contact'}],
	[wrap('aStore'), 'astore.php', {'tw':'_top', 'tt':'Amazon Store', 'sb':'Amazon Store'}],
	[wrap('Links'), 'links.php', {'tw':'_top', 'tt':'Links', 'sb':'Links'}]
];


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

