
/*  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');
  });
}

/*  Tagcloud */

$(function(){
  $('form[name=newsletter-reg]').submit(function() {
    if( $('#iwagbaccepted').attr('checked') == true){
      return true;
    }
    else {      
      alert('Bitten stimmen Sie den Datenschutzbestimmungen zu.');
      return false;
    }
  });
    $('#tagcloud').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));
	});
});



$(document).ready(function() {
  /* news box */
  $(".news-latest-item").corner("45px tl");
  /* footer background */
  $("#footer").corner("90px tl");
  
});
