// 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: 07/02/2009

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
