// Hier alles reinlegen, was bei page-load ausgeführt werden soll
jQuery(document).ready(function(){
	
	$('#faqheader dd').hide();
	$('#faqheader dt a').click(function(){
	
	if($(this).parent().next().attr("class") == 'faqopen'){
			$(this).parent().next().removeClass();
			
			$(this).parent().next().slideUp();
			
			$(this).html('<div style="width:10px;float:left;">+</div><div style="padding-left:15px;">' + $(this).children().eq(1).text() + '</div>');
			return false;
		}
		else{
			
			var $kids = $(this).parent().parent().parent().children('dl');
			var count = $kids.length;
			$.each($kids, function(){				
				$(this).children('dt').children('a').html('<div style="width:10px;float:left;">+</div><div style="padding-left:15px;">' + $(this).children('dt').children('a').children('div').eq(1).text() + '</div>');
				$(this).children('dd').removeClass();
				$(this).children('dd').slideUp();
			});			
			$(this).parent().next().addClass('faqopen');
			$(this).parent().next().css('padding-bottom', '60px');
			$(this).parent().next().slideDown();
			


			$(this).html('<div style="width:10px;float:left;">-</div><div style="padding-left:15px;">' + $(this).children().eq(1).text() + '</div>');
			
			return false;
		}
	});	
	
	

	
});	
	
	
	

