$(document).ready(function() { 

	// IE6
	if($.browser.msie && $.browser.version <= 6) { 
		$('#nav li:first').addClass('first');
	};

	// Anpassungen für h1-Überschriften
	$('#inhalt h1').addClass('js').innerWrap('<span></span>');
	
	// Tabs
	if($('#contenttabs').length) { 
		$('#contenttabs').eujTabs({ 
			content: 'tabcontent'
		});
	};
	
	$('#inhalt table tr:even').addClass('even');
	
});

/* innerWrap-PlugIn */
jQuery.fn.innerWrap=function(){var b,c=arguments;return this.each(function(){if(!b)b=jQuery.clean(c,this.ownerDocument);var a=b[0].cloneNode(true),d=a;while(a.firstChild)a=a.firstChild;jQuery.each(this.childNodes,function(f,e){a.appendChild(e)});jQuery(this).empty().append(d)})};

/* Captcha-Bild aktualisieren */
function newCaptcha() {
	document.getElementById('captcha').src = 				
	'func/modul_captcha/securimage/securimage_show.php?sid=' + Math.random(); 
	return false;
}
