
/* In onder meer Opera en wellicht Firefox wordt ipv "alt" de "title" tag gebruikt als tooltip. */
/* Dankzij dit scriptje hoeven we toch enkel "alt" in te vullen. */

$(document).ready(function() {
 
 	$("img:not([title])").each(function() {
  		if($(this).attr("alt") != '') $(this).attr("title", $(this).attr("alt"))
  		else $(this).attr("title", $(this).attr("src"))
  	})
 
});


