function initAGB()
{
	//alert('init referenzen');
	
	$("#btAgbShowall").fadeIn(800);	
	
	// set buttons
	$('a#btAgbShowall').css('cursor','pointer').click( function()
		{
			//alert("showAll");
			$("#btAgbShowall").hide();
			$("#btAgbShownone").show();
			$("#topAgb").fadeIn(800);
			$("#agb_accordion> div").slideDown();
			return false;
		});
	
	$('a#btAgbShownone').css('cursor','pointer').click( function()
		{
			//alert("showAll");
			$("#btAgbShowall").show();
			$("#btAgbShownone").hide();
			$("#topAgb").fadeOut(800);
			$("#agb_accordion> div").slideUp();
			return false;
		});
	
}
