function dom_init() {

	jQuery.noConflict();
	(function($) { 

/* Update 04.09.2010
        $("#contentPart p.Text").hide();

	$("#contentPart .teamImg").hover(function() {
	  $(this).next("p.Text").animate({opacity: "show"}, "slow");
	}, function() {
	  $(this).next("p.Text").animate({opacity: "hide"}, "fast");
	});
*/
		
	$('#contentNavi .head').next().hide();
	$('#contentNavi .pageNavi').hide();
		
	$('#contentNavi .head').click(function() {
		$('.active .head').next().hide();
		$('active').removeClass('active');
		$(this).parent().addClass('active');
		$(this).next().toggle();		
	});
	
	$('#contentNavi .subNavi li').hover(function() {
		$(this).children('.pageNavi').toggle();
	}, function() {
		$(this).children('.pageNavi').hide();
	});
		
/* Update 04.09.2010
	$(".jMyCarousel").jMyCarousel({
		visible:	'801px',
		circular:	true,
		auto:		true,
		speed:	1500				
	});
*/
	
	$('a.thumb').lightBox();
	
	$("img.thumb").jThumb();
	$("a.thumb img, img.thumb").jThumbImg();
	
	})(jQuery);

}

  function Druckversion(url)
  {
    var name = "Druckversion";
    var features = "scrollbars=yes,status=yes,width=500,height=500,left=0,top=0";
    window.open(url,name,features);
  }
