$(document).ready(function() {
	$('#buchteaser_empfehlung_image').hover(function() {
		$(this).hide();
		$('#buchteaser_empfehlung_text').show();
		$('.right_banner').css('width', 302);
	});
	
	$('#buchteaser_empfehlung_text').mouseout(function() {
		$(this).hide();
		if($(this).hide()) {
			$('#buchteaser_empfehlung_image').show();
		}
	});
	
});