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

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

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

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

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

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

			$("a#example6").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({
                                'width'			: '65%',
				'height'		: '75%',
				'titlePosition'		: 'inside',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});

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








/* Kleine Bilderreihe */
$(".various3").fancybox({
				width			:	880,
				height			:	780,
				
                                'bgImage'               : '/pics/bg_detail.jpg',
				'bgRepeat'	 	: 'repeat-x',
                                'bgColor'               : 'blue',
                                'closeButton'           : '/pics/detail_close.png',
				'type'			: 'iframe'
			});


/* Kontakt Anfahrt */
$(".various_anfahrt").fancybox({
				width			:	880,
				height			:	780,
				'type'				: 'iframe',
                                'closeButton' 		: '/pics/detail_close-dark.png'
			});


$("#various4").fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});

/* technische Details */
$(".various5").fancybox({
				'width'			: 470,
				'height'		: 800,
				'type'			: 'iframe',
                                'bgImage'               : 'none',
				'bgRepeat'	 	: 'no-repeat',
                                'bgColor' 		: '#ffffff',
                                'closeButton' 		: '/pics/detail_close-dark.png'
			});

/* Gebraucht maschinen */
$(".various6").fancybox({
	width		:	880,
	height		:	780,
	'type'		: 'iframe',
	'bgImage' 	: '/pics/bg_detail.jpg',
        'bgRepeat'	: 'repeat-x',
	'bgColor' 	: '#ffffff',
	'closeButton' 	: '/pics/detail_close.png'
});

			
		});
