(function() {
  if(document.location.href.indexOf('/bedrijf/mensen')!=-1) {
    var images = document.getElementsByTagName('img');
    for(var i=0; i<images.length; i++) {
     if(images[i].src && images[i].src.indexOf('/images/stories/People/90x90') != -1) {
      images[i].onmouseover = function() {
        this.src = this.src.replace('-zw.jpg', '.jpg'); 
      }
      images[i].onmouseout = function() {
        this.src = this.src.replace('.jpg', '-zw.jpg'); 
      }
     } 
    }
  }
})();
*/
