
  $(function() {

    
    // Boxtoggle
    $('.boxtoogletext').hide();
    
    $('.boxtoogleheader').toggle(function() {
      $(this).next('.boxtoogletext').show('fast');
      $(this).attr('class', 'boxtoogleheader plus');
    }, function() {
      $(this).next('.boxtoogletext').hide('fast');
      $(this).attr('class', 'boxtoogleheader minus');      
    });
	
	$(".facebook-blau-box-img .content.small .boxfuss a").attr("target", "_blank");
	
	
	

  });
