$(document).ready(function() {

	if ($('div#pictWrapper div#textLayer').length == 1) {
		//$('div#pictWrapper div#textLayer').fadeTo(0,0).delay(1500).fadeTo(3000,1);
		$('div#pictWrapper div#textLayer').fadeTo(0,0).fadeTo(3000,1);
	}

	if ($('a.lightbox').length != 0) {
		$("a.lightbox").fancybox({
			'padding'			: 10,
			'margin'			: 100,
			'showCloseButton'	: false,
			'showNavArrows'		: true,
			'titleShow'			: true,
			'titlePosition'		: 'outside',
			'cyclic'			: true,
			'overlayColor'		: '#000',
			'overlayOpacity'	: 0.80,
			'centerOnScroll'	: true
		});
	}

});

