function clearTabs(exclude) { 	
	tab = ['appetizers','beverages','lunchDinner','breakfast' ];
	if (exclude != null) { 
		tab = tab.without(exclude);	
	}
	for (var i = 0; i < tab.length; ++i) {
  		var item = tab[i];
  		new Effect.DropOut(item);
	}
		
}

function clearBreakSub(exclude) { 
	tab = ['omelets','eggstra','pancakes','beverages','eggs','eggSandy','breakfastSides' ];
	if (exclude != null) { 
		tab = tab.without(exclude);	
	}
	for (var i = 0; i < tab.length; ++i) {
  		var item = tab[i];
  		new Effect.DropOut(item);
	}
}

function clearLunchSub(exclude) { 
	tab = ['salads','combos','sandwiches','paninnis','clubs','melts','burgers', 'landSea' ];
	if (exclude != null) { 
		tab = tab.without(exclude);	
	}
	for (var i = 0; i < tab.length; ++i) {
  		var item = tab[i];
  		new Effect.DropOut(item);
	}
}


// THIS TOGGLES THE MAIN DIVS
function toggleMainDiv(tab) { 
	clearTabs(tab);
	new Effect.SlideDown(tab);
}

// THIS TOGGLES THE BREAKFAST SUB NAV ELEMENTS
function toggleBreakSub(tab) { 
	clearBreakSub(tab);
	new Effect.SlideDown(tab);
}

// THIS TOGGLES THE Lunch and Dinner SUB NAV ELEMENTS
function toggleLunchSub(tab) { 
	clearLunchSub(tab);
	new Effect.SlideDown(tab);
}



/*

function linner(id) { 

	new Effect.Fade('salads'); 
	new Effect.Fade('combos');
	new Effect.Fade('sandwiches');
	new Effect.Fade('paninnis');
	new Effect.Fade('clubs');
	new Effect.Fade('melts');
	new Effect.Fade('burgers');
	new Effect.Fade('landSea');

	if (id == 'lunchDinner') { 
		new Effect.toggle('lunchDinner', 'blindDown');
	}
	

	
}
*/	