$(document).ready(function(){
	$('.searchresult p').css('height', '5em');
	$('.searchresult').mouseenter(function(){
		$(this).addClass('STYLE_suchergebnisDark');
		$(this).css('background','#396A37');
		$(this).find('img').stop().animate({width: '100px'});
		$(this).find('.BildBox').stop().animate({width: '100px'});
		$(this).find('p').stop().animate({height: '9em'});
	});
	$('.searchresult').mouseleave(function(){
		$(this).removeClass('STYLE_suchergebnisDark');
		$(this).css('background','transparent');
		$(this).find('img').stop().animate({width: '75px'});
		$(this).find('.BildBox').stop().animate({width: '75px'});
		$(this).find('p').stop().animate({height: '5em'});
	});
});