Ape.Element.header = function(){
	var that = this;
	
	this.start = function(){
		$('#BereichNavi').children().each(function(){
		
			var Bereich = $(this).attr('id');
			
			$('#'+Bereich).bind('click', function(){
				//content_click(globalAgofCode, prod, wm_page_name, wm_group_name);
				
				$('#BereichNavi').children().each(function(){
					$(this).removeClass('aktiv');
				});
				
				$('#'+Bereich).addClass('aktiv');
				$('#BereichActive').val(Bereich);
						
				$('#suchform').attr('action', $('#Suchergebnisseite').val()+'?Bereich='+Bereich);/* bla*/
				return false;
			});	
		
		});
	};
};