jQuery(document).ready(function() {
	
	jQuery('#choose-fachs').click(function() {
      $('#choose-nav').toggle('slow', function() {
      });
	  $('#choose-nav-zielg').hide();
    });
	
	jQuery('#choose-zielg').click(function() {
      $('#choose-nav-zielg').toggle('slow', function() {
      });
	  $('#choose-nav').hide();
    });
	
	jQuery('#choose-newskat').click(function() {
      $('#choose-nav').toggle('slow', function() {
      });
    });
	
	jQuery('#choose-abc').click(function() {
      $('#choose-nav').toggle('slow', function() {
      });
    });
	
	var news = new Array();

	for($i=6;$i<12;$i++)
	{
		news.push( $('#news-box-left>dl').get($i) );
	}
	$('#news-box-right').append( news );
	
	$('#news-box-right>dl:last').addClass('box-last');
	$('#news-box-left>dl:last').addClass('box-last');
	
	// Topnavigation
	jQuery("#top-navigation ul li ul").hide(); 
	jQuery("li.trigger").hover(
        function () {
        	jQuery(this).children("ul").show();
        	jQuery(this).children("a").addClass('nav-active');
        },function(){
        	jQuery(this).children("ul").hide();
        	jQuery(this).children("a").removeClass('nav-active');
	});
	jQuery("#dropDownMenu #lk").hover(
        function () {
        	jQuery(this).children("ul").show();
        	jQuery(this).children("a").addClass('lk-active');
        },function(){
        	jQuery(this).children("ul").hide();
        	jQuery(this).children("a").removeClass('lk-active');
	});
	
	$('#visuals').cycle({
		timeout: 10000
	});

});

