// evs/OAE-SiteNavigation.js
// This script inserts the Expo website's upper section of the navigation bar into pages that have a script with src="OAE-SiteNavigationLower.js".
// Written by: Brian Bahn
// Updated: 12/17/2011

var aryNavigationMenuItemPages = new Array
	(
	"index.html", 
	"advertising.html", 
	"expoCalendar.html", 
	"contactUs.html", 
	"exhibitors.html", 
	"findUs.html", 
	"forms.html", 
	"lodging.html", 
	"manufacturerReps.html", 
	"pressRoom.html", 
	"programs.html", 
	"publicity.html", 
	"sponsorship.html", 
	"siteMap.html" 
	);

var aryNavigationMenuItemDescriptions = new Array
	(
	"Home", 
	"Advertising", 
	"Calendar", 
	"Contact Us", 
	"Exhibitors", 
	"Find Us", 
	"Forms", 
	"Lodging", 
	"Manufacturer Reps", 
	"Press Room", 
	"Programs", 
	"Publicity", 
	"Sponsorship", 
	"&ndash; Sitemap / Search &ndash;" 
	);

var aryNavigationMenuItems = new Array();
	aryNavigationMenuItems[0]=aryNavigationMenuItemPages; 
	aryNavigationMenuItems[1]=aryNavigationMenuItemDescriptions; 

function SiteNavigation(CurrentPage)
	{
	for (var idxMenuItem = 0; idxMenuItem < aryNavigationMenuItemDescriptions.length; idxMenuItem++)
		{
		if(aryNavigationMenuItems[0][idxMenuItem] == CurrentPage)
			{
			document.write('<div class="current" style="border: none; padding-left: 7px; background: white; font-weight: bold; text-align: left">');
			document.write(aryNavigationMenuItems[1][idxMenuItem]);
			document.write('</div>');
			// document.write('<a class="current" href="#');
			}
		else
			{
			document.write('<a href="');
			document.write(aryNavigationMenuItems[0][idxMenuItem]);
			document.write('">');
			document.write(aryNavigationMenuItems[1][idxMenuItem]);
			document.write('</a>');			} 
			}
		}


// End of OAE-SiteNavigation.js

