/* Tigra Menu items structure */
var MENU_ITEMS = [
	[wr('Bobby'), 'bobbyNews.html', {'sw':123},
		['About', 'bobbyread.html'],
		['Schedule', 'bobbySchedule.html'],
		['Bands / Projects', 'bobbyProjects.html'],
		['Production Services', 'studioProduction.html'],
		['Discography', 'discography.html'],
		['Listening Room and Store', 'downloads.html'],
		['Photo Gallery', 'bobbyPhoto.html'],
		['Links', 'links.html'],
		['Contact', 'contact.php']
	],
	[wr2('Studio'), 'studioNews.html', {'sw':171},
		['Space and Gear', 'studio.html'],
		['Services and Rates', 'studioServices.html'],
		['Client List / Artist References', 'studioReferences.html',{'sh':40}],
		['Production Services', 'studioProduction.html'],
		['Choosing a Studio', 'studioChoosing.html'],
		['Discography', 'discography.html'],
		['Listening Room and Store', 'downloads.html'],
		['Links', 'links.html'],
		['Contact', 'contact.php']
	],
	[wr3('Contact'), 'contact.php', {'sw':94}],
    [wr4('Links'), 'links.html', {'sw':58}],
	
	
];
function wr(Bobby) {
        return [
           '<img src="images/navBobby.gif">',
           '<img src="images/navBobbyOn.gif">',
           '<img src="images/navBobbyOn.gif">'
        ];
}
function wr2(Studio) {
        return [
           '<img src="images/navStudio.gif">',
           '<img src="images/navStudioOn.gif">',
           '<img src="images/navStudioOn.gif">'
        ];
}
function wr3(Contact) {
        return [
           '<img src="images/navContact.gif">',
           '<img src="images/navContactOn.gif">',
           '<img src="images/navContactOn.gif">'
        ];
}
function wr4(Links) {
        return [
           '<img src="images/navLinks.gif">',
           '<img src="images/navLinksOn.gif">',
           '<img src="images/navLinksOn.gif">'
        ];
}


