$(document).ready(function() {
   if ($('.vortraegeundseminare').length>0) {
	    $('h1').append('&nbsp;<span class="more_link">&rsaquo;</span>');
		$('h1').wrapInner('<a href="javascript:;"></a>');
		$('h1 a').click(function(){
			if ($(this).parent().next().css('display')!='none') {
				$(this).parent().next().slideUp('normal',function(){$(this).prev().removeClass('plus0b');});
			} else {
				//$(this).parent().addClass('plus0b');
				$(this).parent().next().slideDown('normal');
			}
		});
   }
   $('.content a[href^=http]').each(function(){
		if($(this).attr('href').toString().indexOf(window.location.hostname) == -1) {
			$(this).attr('target', '_blank');
		}
   });
   $('.content input, .content textarea').each(function() {
		if ($.browser.mozilla===true) {
			$(this).wrap('<div class="inputfix_ff"></div>');
			$('.inputfix_ff').hide();	
		}
   });
   function showInputs() {
	   	$('.inputfix_ff').show();	
   }
   if ($.browser.mozilla===true) {
   		setTimeout(showInputs,50);
   }
});
