﻿var objMenu = new Object();

objMenu['Home'] = ['Home', 'index.html'];

objMenu['Events'] = ['Event Schedule', 'events.html'];

objMenu['Workshops'] = ['Workshop Schedule', 'wkshops.html'];

objMenu['LineDance'] = ['Line Dance', 'linedance.html'];

objMenu['Social'] = ['Parties / Social Events', 'social.html'];

objMenu['Competition'] = ['Competition', 'comp.html'];

objMenu['Registration'] = ['Registration', 'registration.html'];

objMenu['Hotel'] = ['Hotel Information', 'hotel.html'];

objMenu['Staff'] = ['Event Staff', 'staff.html'];

objMenu['Volunteers'] = ['Volunteers', 'volunteers.html'];

objMenu['Vendors'] = ['Vendors', 'vendors.html'];

objMenu['Results'] = ['Results', 'results.html'];

objMenu['Links'] = ['Links', 'links.html'];

objMenu['Contact'] = ['Contact Us', 'contact.html'];

objMenu['DanceVIP'] = ['Dance with Me', 'dancewithme.html'];

objMenu['Welcome'] = ['2011 Welcome', 'welcome.html'];


//objMenu[''] = ['', '.html'];

var _Menus = [
	['MAIN=0', 'Home', 'Results', 'Events', 'Workshops', 'LineDance', 'DanceVIP', 'Social', 'Competition', 'Registration', 'Hotel', 'Staff', 'Volunteers', 'Vendors', 'Contact'],
	['FTRL=1', 'Home', 'Events', 'Workshops', 'LineDance', 'DanceVIP', 'Social', 'Competition'],
	['FTRR=2', 'Registration', 'Hotel', 'Staff', 'Volunteers', 'Vendors', 'Results', 'Contact'],
];

function getMainMenu(x, n) {
	getMenu(x, n);
	document.title = 'Dance Mardi Gras - ' + objMenu[n][0];
}

function getFtrMenu(x) {
	getMenu(x, 'null');
}

function getMenu(x, n) {
	var a = '';
	var c = ' class="selected"';

	document.writeln('<ul class="menuNav">');

	for (var i = 1; i <= _Menus[x].length - 1; i++) {

		a = (n ==_Menus[x][i]) ? c : '';

		document.writeln('<li' + a + '><a href="' + objMenu[_Menus[x][i]][1] + '">' + objMenu[_Menus[x][i]][0] + '</a></li>');
	}

	document.writeln('</ul>');
}


var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-7795194-16']);
_gaq.push(['_trackPageview']);

