$(document).ready(function(){
	var lightboxoptions = {
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.9,
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Bild ' + (currentIndex + 1) + ' von ' + currentArray.length + '</span>';
		}
	};
	
	$("a[rel=lightbox]").fancybox(lightboxoptions);
	
	var isotopeOptions = {
		layoutMode : 'masonry',
		masonry:{columnWidth:340},
		itemSelector: '.layout_short',
		animationEngine: 'css',
		animationOptions: {
			duration: 0,
			easing: 'linear',
			queue: false
		}
	};
	$('#news').isotope(isotopeOptions);
	
});

function log(t){try{console.log(t);}catch(e){}};
