// JavaScript Document
$(document).ready(function() {
	
	$.fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200,
		'overlayOpacity':	0.7,
		'type'			:	'ajax',
		'href'			:	'promo.html',
		'hideOnContentClick':true
	});	
	
	$(function() {
		$('#galerie a').lightBox();
	});

	$(function() {
		$('#news').fancybox();
	});

});

