$(document).ready(function(){
	/*******************************************/

	/* Bilder der Galerie vertikal ausrichten */
	$('ul.gallery li a img').each(function(){
		var imageWidth  = $(this).width();
		var imageHeight = $(this).height();
		var linkWidth   = $(this).parent().width();
		var linkHeight  = $(this).parent().height();

		if(imageWidth == linkWidth) {
			var posY = Math.round((linkHeight / 2) - (imageHeight / 2));
			$(this).css('margin-top', posY + 'px');
		}
	});
	
	$('.thickbox').thickbox();

	/*******************************************/
});

