$(document).ready(function() {
		$("a[rel=bilder_group]").fancybox({
				'overlayColor'		: '#000',
				'transitionIn'		: 'elastic',
				'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>';
				}
			});
			
			$(".inline").fancybox({
				'titlePosition'		: 'inside',
				'overlayColor'		: '#000',
				'padding'		: '25',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});

			$(".Iframe").fancybox({
				'width'			: '100%',
				'height'		: '100%',
				'overlayColor'		: '#000',
				'autoScale'		: true,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'			: 'iframe'
			});

			$("#flash").fancybox({
				'width'			: '640',
				'height'		: '360',
				'padding'		: 0,
				'overlayColor'		: '#000',
				'autoScale'		: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});

$(".box").click(function() {
	$.fancybox({
			'padding'	: 0,
			'autoScale'	: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'		: this.title,
			'width'		: 680,
			'height'	: 495,
			'href'		: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'		: 'swf',
			'swf'		: {
			'wmode'		: 'transparent',
			'allowfullscreen'	: 'true'
			}
		});
 
	return false;
});

$(".box2").click(function() {
	$.fancybox({
			'padding'	: 0,
			'autoScale'	: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'		: this.title,
			'width'		: 600,
			'height'	: 336,
			'href'		: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'		: 'swf',
			'swf'		: {
			'wmode'		: 'transparent',
			'allowfullscreen'	: 'true'
			}
		});
 
	return false;
});
			
		});
