// after loading
$(document).ready(function(){

  $('#center').find("a[href$='jpg']").add("a[href$='JPG']")
  .add("a[href$='jpeg']").add("a[href$='JPEG']")
  .add("a[href$='png']").add("a[href$='PNG']")
  .add("a[href$='gif']").add("a[href$='GIF']").filter(":has('img')")
  .addClass("thickbox").attr('rel', 'galerie');

  $('a.external, a.urlextern').click(
    function(){
      window.open(this.href);
      return false;
    }
    );
  $('.section').hover(function() {
    $(this).css({
      "color": "#2d2d2d",
      "cursor": "pointer"
    }).find("h2").css("background", "#2d2d2d");
  },
  function() {
    $(this).css("color", "#636363").find("h2").css("background", "#80bc1c");
    $(this).css("color", "#636363").find("h2.c-gray").css("background", "#857f82");
  });
});

