jQuery(document).ready(function() {
 // hides the newsteaser as soon as the DOM is ready
	$('.newsteaser').hide();

 // toggles the teaser on clicking the noted link
	$('a.toggle').click(function() {
		$('.newsteaser').slideToggle(400);

 // toggle triangle		
		$(this).toggleClass("toggleactive"); 

		return false;
  	});
});


