
/*	Mega Menu */
$.fn.dropdown = function() {
	$(this).hover(function(){
		$(this).addClass("hover");
		$('> .dir',this).addClass("open");
		$('ul:first',this).css('visibility', 'visible');
	},function(){
		$(this).removeClass("hover");
		$('.open',this).removeClass("open");
		$('ul:first',this).css('visibility', 'hidden');
	});
}
/* main menu*/
$(function(){
	var menu = $('#mainMenu li')
		.corner("round top 10px")
		.hover(
			function(){menu.removeClass('hover'); $(this).addClass('hover');},
			function(){menu.removeClass('hover').filter('.active').addClass('hover');});
	menu.filter('.active').addClass('hover');
});

/*	Tagcloud */
$(function(){
	$('#neustatagcloud').tagcloud({
		zoom:120,
		min_zoom:50,
		centrex:120,
		centrey:120,
		foreground_colour:'#444',
		background_colour:'#fff'
	});
	//fix tagcloud-bug "text behind the linktag"
	$('div.point','#tagcloud').each(function(){
    	if(!$('a',this).text())$(this).contents().filter(function(){return this.nodeType==3;}).appendTo($('a',this))    
	});
});

/* round corner*/
$(document).ready(function() {
	/* news box */
	$('.tx-powermail-pi1_fieldset_kontaktdaten').corner("round 20px");
	$('.tx-powermail-pi1_fieldset_ihrenachricht').corner("round 20px");
	$('.news-latest-item').corner("round 20px");
	$('.news-list-container').corner("round 20px");
	$('#accordion .csc-default .csc-default').corner("round 20px");
	$('.threeColumnteaser').corner("round 20px");
	$('.threeColumnteaserinteaser').corner("round 20px");	
	
	
	/* footer background */
	$("#footer").corner("90px tl");
	
});
