function dom_init() {

  // See http://fancybox.net/api for all options
  
	/*============FANCYBOX============*/
	$('.fancybox').fancybox({
			
		prevEffect : 'none',
		nextEffect : 'none',

		closeBtn  : true,
		arrows    : true,
		nextClick : true,

		helpers : { 
			thumbs : {
				width  : 50,
				height : 50
			}
		}		

	});
	/*===========ENDE==============*/
	
	
	
	
	/*=============NAVIGATION============*/
	$("#navi ul li a.none").prev().hide();
	
	$("#navi ul li a.active").prev().fadeIn('fast');
	
		$('#navi ul li a.none').mouseenter(function() {
  			$(this).prev().fadeTo("fast", 0.3);
		});
	
		$('#navi ul li a.none').mouseleave(function() {
  			$(this).prev().fadeOut('slow');
		});
		
		
	
	$("#navi ul li:last-child a").css('border-bottom', '0');

	/*==========ENDE==========*/
	
	
	
	/*==========KONTAKTFORMULAR==========*/
	if($('#hinweis').size() == 0) {
	 
		$(".message").css('display', 'none');
	 
	}
	 
	$('#feedback .message').click(function() {
	
  		$(this).css("display", "none");
  		
	});
	 /*ENDE*/
	 
	 
	/*=========TOPNEWS==========*/
	 $("#news a.more").mouseenter(function(){
  		$(this).animate({
    		opacity: 0.7,
  		}, 200 );
	});
	
	$("#news a.more").mouseleave(function(){
  		$(this).animate({
    		opacity: 1,
  		}, 200 );
	});
	
	/*=====ENDE=====*/

	 
	 
	 
	
	}
