/**
 * Steuert die AJAX basierte Breadcrumb Navigation. 
 * 
 * @version $Id: BreadcrumbNavigation.js 4766 2010-04-12 06:40:19Z marlettas $
 * @author marlettas
 * 		$LastChangedDate: 2010-04-12 08:40:19 +0200 (Mon, 12 Apr 2010) $ 
 * 		$LastChangedBy: marlettas $
 */
document.observe("dom:loaded", function() {
	new Platform.BreadcrumbNavigation();
});

Platform.BreadcrumbNavigation = Class.create({
	initialize: function(parameters) {
		Platform.ComponentLoader.load(
			$("breadCrumb"), 
			"BreadCrumbNavigation",
			new Platform.Component.Relation({ requestParameters: {
				position: document.location.href
			}})
		);
	}
});