/*
  ------------------------------------
    JS Grundfunktionen | © 2008 by politik-im-raum.de
  ------------------------------------
*/

$().ready(function() {
  $(".news_text_more").toggle(function(){
		$(this).animate({
			height: 'hide',
			opacity: 'hide'
		}, '1');
	});
});

$(document).ready(function(){

  // Navigation Hover

  $(".fade").click().toggle(function(){
		$(this).next('.news_text_more').animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	}, function() {
		$(this).next('.news_text_more').animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});

});

