$(document).ready(function() {
  
  // fotoviewer in portfolio
  $('#album div.thumb img').mouseover(function() {
    var foto = $(this).attr('id');
    
    // oude foto
    var bovenop = $('#album div.large img.bovenop');
    bovenop.addClass('erachter');
    
    // nieuwe foto
    $('#album div.large img#' + foto).hide().addClass('bovenop').fadeIn(function() {
      bovenop.removeClass('bovenop erachter');
    });
  });
  
  $('body#portfolio div.kolom_3 p a').hover(
    function() {
      var src = $('img', this).attr('src');
      var alt = $('img', this).attr('alt');
      $('img', this).replaceWith('<div src="' + src + '" alt="' + alt + '">' + alt + '</div>');
    },
    function() {
      var src = $('div', this).attr('src');
      var alt = $('div', this).attr('alt');
      $('div', this).replaceWith('<img src="' + src + '" alt="' + alt + '"/>')
    }
  );
  

});
