		$(document).ready(function() {
			/*
			*   Examples - images
			*/

			$("a#example1").fancybox();

			$("a#example2").fancybox({
				'overlayShow'	: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});

			$("a#example3").fancybox({
				'transitionIn'	: 'none',
				'transitionOut'	: 'none'	
			});

			$("a#example4").fancybox({
				'opacity'		: true,
				'overlayShow'	: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'none'
			});

			$("a#example5").fancybox();

			$("a#example6").fancybox({
				'titlePosition'		: 'outside',
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.9
			});

			$("a#example7").fancybox({
				'titlePosition'	: 'inside'
			});

			$("a#example8").fancybox({
				'titlePosition'	: 'over'
			});

			$("a[rel=example_group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});

			/*
			*   Examples - various
			*/

			$("#various1").fancybox({
				'titlePosition'		: 'inside',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});

			$("#various2").fancybox();

			$("#various3").fancybox({
				'width'				: '75%',
				'height'			: '75%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});

			$("#various4").fancybox({
				'padding'			: 0,
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});
                        
                         $("#gallerie_hotel").click(function() {
                            $.fancybox(['http://www.hotel-fuchs.de/pics/hotel/schriftzug.jpg', 'http://www.hotel-fuchs.de/pics/hotel/zimmer.jpg', 'http://www.hotel-fuchs.de/pics/hotel/lampen.jpg', 'http://www.hotel-fuchs.de/pics/hotel/wasserhahn.jpg','http://www.hotel-fuchs.de/pics/hotel/zimmer2.jpg', 'http://www.hotel-fuchs.de/pics/hotel/bad.jpg', 'http://www.hotel-fuchs.de/pics/hotel/flatscreen.jpg', 'http://www.hotel-fuchs.de/pics/hotel/zimmer3.jpg', 'http://www.hotel-fuchs.de/pics/hotel/internetecke.jpg', 'http://www.hotel-fuchs.de/pics/hotel/arbeitseck.jpg',], {
                                            'transitionIn': 'none',
                                            'transitionOut': 'none',
                                            'type'  : 'image',
                                            'titlePosition' 	: 'over',
                                            'changeFade' : 0,
                                            'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
                                            return '<span id="fancybox-title-over">Bild ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
                                            }
                            });
                            });
                            
                         $("#gallerie_torten").click(function() {
                            $.fancybox(['http://www.hotel-fuchs.de/pics/torten/hochzeit1.jpg', 'http://www.hotel-fuchs.de/pics/torten/fruechtekuppel.jpg', 'http://www.hotel-fuchs.de/pics/torten/hochzeit2.jpg', 'http://www.hotel-fuchs.de/pics/torten/geburtstag.jpg','http://www.hotel-fuchs.de/pics/torten/hochzeit3.jpg', 'http://www.hotel-fuchs.de/pics/torten/hochzeit4.jpg', 'http://www.hotel-fuchs.de/pics/torten/malakoff.jpg', 'http://www.hotel-fuchs.de/pics/torten/hochzeit5.jpg', 'http://www.hotel-fuchs.de/pics/torten/muttertag1.jpg', 'http://www.hotel-fuchs.de/pics/torten/hochzeit6.jpg', 'http://www.hotel-fuchs.de/pics/torten/muttertag2.jpg', 'http://www.hotel-fuchs.de/pics/torten/hochzeit7.jpg', 'http://www.hotel-fuchs.de/pics/torten/taufe1.jpg', 'http://www.hotel-fuchs.de/pics/torten/hochzeit8.jpg', 'http://www.hotel-fuchs.de/pics/torten/taufe2.jpg', 'http://www.hotel-fuchs.de/pics/torten/hochzeit9.jpg', 'http://www.hotel-fuchs.de/pics/torten/hochzeit10.jpg'], {
                                            'transitionIn': 'none',
                                            'transitionOut': 'none',
                                            'type'  : 'image',
                                            'titlePosition' 	: 'over',
                                            'changeFade' : 0,
                                            'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
                                            return '<span id="fancybox-title-over">Bild ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
                                            }
                            });
                            });
    });
