
$(document).ready(function() {
	
	// fix f*kin IE png bug
	$(document).pngFix();
	
	// init fancybox elements
	$.each({ // page : width, height
			'imprint' : { 'width': 420, 'height': 310 }
		}, function(page, options) {
			$('.fancybox.'+ page).fancybox({
				'frameWidth' : options.width,
				'frameHeight' : options.height,
				'overlayOpacity' : 0.2,
				'hideOnContentClick': false
			});
	});
});