$(document).ready(function() {
						   
		$("a[class=item]").fancybox({transitionIn: 'elastic', transitionOut: 'elastic', overlayShow: false, padding: 0, margin: 0, hideOnContentClick:true, showCloseButton:true, onStart: function(item){if(!$(item).hasClass('active')){ return false;}}});
	
	
		$("a.advanced").fancybox({
			transitionIn: 'elastic'
			});
		
		$("a.gaestebuch").fancybox({
			transitionIn: 'elastic',
			type: 'iframe',
			scrolling: 'no',
			allowtransparency: 'true',
			width: 700,
			height:380
			});
		
		$("a[rel=karten]").fancybox({
			transitionIn: 	'elastic',
			titlePosition 	: 'over',
			titleFormat: 	function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over"><strong>Karte </strong>' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				},
			});
		
		$("a[rel=ausstattung]").fancybox({
			transitionIn: 	'elastic',
			titlePosition 	: 'over',
			titleFormat: 	function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over"><strong>Unsere Seminarr&auml;ume</strong> ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				},
			});
		
			getMenues();

	
});


function getMenues() {


	var url						= "index.html";
	var slctr2	 				= "#to_de";
	var slctr3	 				= "#to_en";
		

				$.get(url, function(html){
					  
					var $html2 = $(html).find(slctr2);
					var $html3 = $(html).find(slctr3);

					$("body").append($html2);
					$("body").append($html3);

				});

}

