$j = jQuery.noConflict();
jQuery(document).ready(function(){
	
/* jedem Link mit der Klasse "Link-Lightbox" das Attribut "rel=lightbox" hinzufügen -> dann klappts auch mit der Lightbox */
	$j('.Link-Lightbox').attr('rel','lightbox');

/* "infobox": überall gleich hoch, damit die rahmen richtig sind */
	var tmpHeight1 = $j('.fce-first').height();
	var tmpHeight2 = $j('.fce-second').height();
	var tmpHeight3 = $j('.fce-third').height();
	var neededHeight = Math.max(tmpHeight1,tmpHeight2,tmpHeight3);
	$j('.fce-first').height(Math.round(neededHeight));
	$j('.fce-second').height(Math.round(neededHeight));
	$j('.fce-third').height(Math.round(neededHeight));
});
