function dom_init() {

/* Documentation - http://fancybox.net/api

	/* Regular */

	$("a.fancy").fancybox({
		'titleShow' : false
	});

	/* Without title */
	
	$("a.fancy-title").fancybox({
		'titleShow' : true
	});

	/* gallerylink */

	$("a[rel=fancy_group]").fancybox({
		'transitionIn'		: 'none', // fade / elastic / none
		'transitionOut'		: 'none',
		'titlePosition' 	: 'outside' // inside / over
	});
	
	/* iframelink */
	
	$("a.iframe").fancybox({
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$("a.panorama").fancybox({
		'width'				: 996, /* source width  + 16px */
		'height'			: 616, /* source height + 16px */
	    'autoScale'     	: false,
	    'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$('a#datenschutz').fancybox ({
		'width'				: '75%',
		'height'			: '75%',
	    'autoScale'     	: false,
	    'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

$('body#page-start a.nav-start').addClass("current");
$('body#page-aktuelles a.nav-aktuelles').addClass("current");
$('body#page-restaurant a.nav-restaurant').addClass("current");
$('body#page-hotel a.nav-hotel').addClass("current");
$('body#page-puenderich a.nav-puenderich').addClass("current");
$('body#page-geschichte a.nav-geschichte').addClass("current");
$('body#page-weingut a.nav-weingut').addClass("current");
$('body#page-kontakt a.nav-kontakt').addClass("current");

$("#portal-schlafen").click(function(){location = ("/de/hotel/")});
$("#portal-restaurant").click(function(){location = ("/de/restaurant/")});
$("#portal-puenderich").click(function(){location = ("/de/puenderich/")});

};

