// JavaScript Document

$(function(){  
  $('.news-list3-container .blau').showFeatureText();    
})

$(function(){  
  $('.news-list3-container .rot').showFeatureText();    
})

$(function(){  
  $('.news-list3-container .gruen').showFeatureText();    
})

$.fn.showFeatureText = function() {
  return this.each(function(){    
    var box = $(this);
    var text = $('.news-list3-content',this);    
	var text2 = $('.news-list3-bottom',this); 

    text.css({height: "250px"}).hide();
	text2.hide();

    box.hover(function(){
      text.slideDown("slow");
	  text2.slideDown("slow");
    },function(){
      text.slideUp("slow");
	  text2.slideUp("slow");
    });

  });
}// JavaScript Document
