(function($){ function init_blind(that){ var divheight = 50; if ( $(that).find('.meldung .wrapper').length > 0) divheight = $(that).find('.meldung .wrapper').height(); $(that).find('.meldung .wrapper').prepend('Hochschieben').css({'height':'50px'}); $('a.magnifier').click(function(){return false;}); $('.meldungsliste .meldung').hover(function(){ $(this).find('.wrapper').animate({'height': '100%'}); $(this).addClass('on'); $(this).find('.teaserText').addClass('on'); }, function(){ $(this).find('.wrapper').animate({'height': divheight}); $(this).removeClass('on'); $(this).find('.teaserText').removeClass('on'); }).focus(function(){ $(this).find('.wrapper').animate({'height': '100%'}); $(this).addClass('on'); $(this).find('.teaserText').addClass('on'); }).blur(function(){ $(this).find('.wrapper').animate({'height': divheight}); $(this).removeClass('on'); $(this).find('.teaserText').removeClass('on'); }).attr('tabindex','0'); } jQuery.blind = function(){ if(!$('.meldungsliste').length){ return; } $('.meldungsliste').each(function(){ init_blind(this); }); }; })(jQuery);