$(function(){

	$('#wrapper_sponsoren_inner').hover(function(){
		$(this).animate({ height: '200px', opacity: '0.8' }, 600);
	}, function(){
		$(this).animate({ height: '45px', opacity: '0.4' }, 600);
	});

})
