﻿$(document).ready(function(){
$('#news').css({'display' : 'block'});
	$(".newsinhalt:eq(0) p, .newsinhalt:eq(1) p, .newsinhalt:eq(2) p").hide();
	
    $(".newsinhalt:eq(0) h4").click(function () {
      $(".newsinhalt:eq(0) p").toggle("slow");
      $(".newsinhalt:eq(1) p, .newsinhalt:eq(2) p").hide("slow");
    });
	 $(".newsinhalt:eq(1) h4").click(function () {
      $(".newsinhalt:eq(1) p").toggle("slow");
      $(".newsinhalt:eq(0) p, .newsinhalt:eq(2) p").hide("slow");
    });
  	 $(".newsinhalt:eq(2) h4").click(function () {
      $(".newsinhalt:eq(2) p").toggle("slow");
      $(".newsinhalt:eq(1) p, .newsinhalt:eq(0) p").hide("slow");
    });
});
