$(document).ready(function() {
 	$("a.cboxImgLink").colorbox(
		{
			rel: "cboxGal",
      current: "Bild {current} von {total}",
			previous: "&laquo; zur&uuml;ck",
			next: "vor &raquo;",
			close: "&#10005;",
			opacity: 0.75,
			onComplete: function() {
        var xnCaptionHeight = $("#cboxTitle").height();
        
        // Falls die Bildunterschrift höher ist als eine Zeile
        if ( xnCaptionHeight > 20) {
          updateCboxHeight( xnCaptionHeight-20 );
        }

      }
		}
	);
 
  $("a.cboxStartGal").each(
    function () {
      $(this).click(
        function(pE) {
          $(this).parent().children("div:first").find("a").trigger("click");
          return false;
        }  
      );     
    }
  );	                   
});

function updateCboxHeight ( xnHeightToAdd ) {
  // Margin-Bottom erhöhen um Platz für eine mehrzeilige Bildunterschrift zu schaffen
  $("#cboxLoadedContent").css("margin-bottom",xnHeightToAdd+"px");
  
  // Height-Wert der umgebenden DIVs anpassen
  $("#colorbox").css("height",$("#colorbox").height()+xnHeightToAdd+"px");
  $("#cboxWrapper").css("height",$("#cboxWrapper").height()+xnHeightToAdd+"px"); 
  $("#cboxMiddleLeft").css("height",$("#cboxMiddleLeft").height()+xnHeightToAdd+"px");
  $("#cboxContent").css("height",$("#cboxContent").height()+xnHeightToAdd+"px");
  $("#cboxLoadedContent").css("height",$("#cboxLoadedContent").height()+xnHeightToAdd+"px");
  $("#cboxMiddleRight").css("height",$("#cboxMiddleRight").height()+xnHeightToAdd+"px");

}
