$(document).ready(function(){
  $('.thumb').mouseover(function(){
	  k=this.src.replace('t.jpg','k.jpg');
		g=this.src.replace('t.jpg','g.jpg');
	  $('#pres').attr({src:k});
		$('#presentatie').attr({href:g});
	});
  $('.icoon').mouseover(function(){
	  $(this).attr({src:this.src.replace('it.jpg','i.jpg')});
	});
  $('.icoon').mouseout(function(){
	  $(this).attr({src:this.src.replace('i.jpg','it.jpg')});
	});
  $('.m_link').mouseover(function(){
	   $('#preview').attr({href:this.href});
		 $('#preview > img').attr({src:this.id});
	});
});
