$(document).ready(function(){
	
	$('[title]').removeAttr('title');
	
	$('p').has('img').addClass('nomargin');
	$('p').has('.aligncenter').addClass('aligncenter');
	$('h2').next('p').has('img').addClass('nomargin');
	
	$('.kollektion .post p a').has('img').fancybox({
		'cyclic' : false,
		'overlayColor' : '#000',
		'overlayOpacity' : 0.8,
		'hideOnContentClick' : true,
		'showCloseButton' : true,
		'autoScale' : true,
		'margin' : 20,
		'padding' : 0
	});
	
	$(".album .medialink").click(function() {
		$.fancybox({
			'overlayColor' : '#000',
			'overlayOpacity' : 0.8,
			'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'			: 'iframe',
			'swf'			: {
			'wmode'			: 'transparent',
			'allowfullscreen'	: 'true'
			}
		});	
		return false;
	});
		
		
	$('.presse .presselogo').fancybox({
		'overlayColor' : '#000',
		'overlayOpacity' : 0.8,
		'modal' : false,
		'margin' : 0,
		'padding' : 0,
		'height' : '90%',
		'width' : 780,
		'autoScale' : true,
		'scrolling' : 'auto',
		'autoDimensions' : false
	});
		
});		
