jQuery(function(){
	$('div.pane').hide();
	// Hovereffekt
	$('.hlist ul li:has(div.pane)').hover(function(){
		$(this).find('a:first').addClass('hover');
		$(this).find('div.pane').show();
	}, function(){
		$(this).find('div.pane').hide();
		$(this).find('a:first').removeClass('hover');
	});
	// Runde Boxen in der rechten Spalte
	$('#col3_content div.csc-default').each(function(){
		$(this).children().wrapAll('<div class="right_column_content"></div>');
	}).prepend('<div class="round_edge_opener"><img src="/clear.gif" alt="" class="spacer" /></div>').append('<div class="round_edge_closer"></div>');
});
$(window).load(function(){
	// Breite der Ausklappmenüs bestimmen und diese ausblenden
	$('div.pane').each(function(){
		$(this).show();
		var width = 0;
		var ieadd = 0;
		if($.browser.msie && $.browser.version=="6.0") {
			ieadd = 1;
		}
		$(this).find('ul.subpane').each(function(){
			$(this).width($(this).width() + ieadd*10);
			width += $(this).width() + 10;
		});
		if (width < $(this).parent().width()) {
			width = $(this).parent().width() + 15 + ieadd*10;
		}
		$(this).width(width + ieadd*5);
		if ($(this).find('ul.subpane').length == 1) {
			$(this).addClass('onelevel');
		}
		$(this).hide();
	});
});
