jQuery(document).ready(function() {  
  jQuery('#teaser .subcr div').hover(
    function () {
      jQuery(this).addClass('active');
    }, 
    function () {
      jQuery(this).removeClass('active');
    }
  );
  jQuery('textarea').prev('powermail_mandatory_js').css('display', 'none');

  jQuery('.slide_content h2:empty,.slide_content p:empty, .slide_link_to:empty').css('display','none');
  jQuery('.vlist:empty').parent('.vlist_wrap').css('display','none');
  jQuery('.hlist li.first-lvl').hover(function () {
    jQuery(this).addClass('hover');
    },function () {
    jQuery(this).removeClass('hover');
  });
  if (!(document.all && !window.opera && window.XMLHttpRequest)) {
  if (jQuery('textarea').length != 0) { 
    jQuery('textarea').autoResize({
      onResize : function() {
        jQuery(this).css({opacity:1});
      },
      animateCallback : function() {
        jQuery(this).css({opacity:1});
      },
      animateDuration : 300,
      extraSpace : 25
    });
  }
  }
});
