

<!--// Define whatever you want to use as seperators for your crumb | > : < etc  -->
	var space =' : ';

<!--// this is the hash table for your sites breadcrumb -->
        var LA = new Array();
        
	// Airport

	LA["a1"] =  Acity + ' Airport and Hotels';
	
			//Sample
			//LA["variable for page"] = '<a href="Link">Page Name</a>' + space + 'Page Name' ;
			
			
	
	
<!--// Build for missing breadcrumb reference -->
	var hLocation = null;
	if ( yLocation != null && yLocation != "" && LA[yLocation] != null ) {
		hLocation = LA[yLocation];
	}
	
<!--// Create home link.  Usually the same everywhere -->
	var home = '<A HREF="/airport_hotel_home.asp" class="link2">Airport Directory</A>';
	
<!--// Define the standard crumb -->
        var Crumb = home+space+hLocation;
        
<!--// home is linked except when your on the home page. -->
        if ( yLocation == 'home' ) {
        	home = 'Airport Directory';
        }

<!--// Define the exception crumb -->
        if ( hLocation == null ) {
        	Crumb = home;
        }
