

<!--// 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();
        
	// AlmightyHog.com
	LA["a1"] = 'Used Harley Classifieds on AlmightyHog.com';
	LA["a2"] = '<a href="http://www.HarleysForSale.biz">Used Harleys For Sale - AlmightyHog.com</a>';
	LA["a3"] = 'Used Harleys for sale' + space + 'Bikes for Sale';
	LA["a4"] = 'Motorcycle Rides' + space + 'Harley Tours';
	LA["a5"] = 'About us | Used Harley Classifieds';
	LA["a6"] = 'Harley Davidson Model & Motorcycle Information';
	LA["a7"] = 'Post your Harley Davidson Motorcycle';
	LA["a8"] = 'New User Registration';
	LA["a9"] = 'Motorcycle Insurance Information';
	LA["a6_h"] = '<a href="bike_information.php">Harley Davidson Model & Motorcycle Information</a>' + space + 'Harley Motorcycles';
	LA["a6_v"] = '<a href="bike_information.php">Harley Davidson Model & Motorcycle Information</a>' + space + 'Victory Motorcycles';
	LA["a6_i"] = '<a href="bike_information.php">Harley Davidson Model & Motorcycle Information</a>' + space + 'Indian Motorcycles';
	LA["a10"] = 'Privacy Policy';
	LA["a11"] = 'Terms of Use';
	LA["a12"] = 'Login'
	LA["a13"] = 'Contact Used Harleys For Sale - Hogmaster'
	LA["a14"] = 'My Used Harleys Ads'
  LA["a15"] = 'Sign up to post your Used Harley ad'
  LA["a16"] = 'Used Harley Davidsons - AlmightyHog Ad' + space + 'Motorcycles for Sale';
			


	// Legal Section
	LA["l1"] = 'Legal Information';
	LA["l2"] = '<A HREF="/legal/index.html">Legal Information</A>';
	
	
<!--// 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="http://www.HarleysForSale.biz">Used Harleys-Home</A>';
	
<!--// Define the standard crumb -->
        var Crumb = home + space + hLocation;
        
<!--// home is linked except when your on the home page. -->
        if ( yLocation == 'home' ) {
        	home = 'Used Harleys For Sale -Home';
        }

<!--// Define the exception crumb -->
        if ( hLocation == null ) {
        	Crumb = home;
        }
