  $(document).ready(function(){
	
	$(".angebotsaktionen").each(function() {
		$(this).mouseover(function(){					
			$(this).stop();
			$(this).children('a').stop();
			//$(this).animate({ width:'150px' , left:'665px'}, 'fast' );
			//$(this).children('a').css('padding-left','25px');
			$(this).animate({ width:'185px' , left:'630px'}, 'medium' );
			$(this).children('a').animate({ paddingLeft:'25px'}, 'medium' );
		});
		$(this).mouseout(function(){					
			$(this).stop();
			$(this).children('a').stop();
			//$(this).animate({ width:'27px' , left:'788px' }, '' );
			//$(this).children('a').css('padding-left','30px');
			$(this).animate({ width:'27px' , left:'788px' }, 'medium' );
			$(this).children('a').animate({ paddingLeft:'30px'}, 'medium' );
		});
	});
		
 });