jQuery(document).ready(function() {
	$('a[target=_blank]').each(function(){
		var oldTitle =$(this).attr('title'); //link title
		var link= $(this).attr('href'); //link destination
		var boodschap=" (link opent in een nieuw venster)";
		var oldHtml=($(this).html()); //link text
		var newHtml = oldHtml + " <img src='/Sites/main/templates/img/newWindow.jpg' alt='link opent in een nieuw venster' style='border:none; padding:0 !important;' />";
		if(oldTitle==undefined){
			oldTitle="";
		}
		if (oldTitle.indexOf("nieuw venster")>-1){
			boodschap="";
		}
		if (link.indexOf("mailto")>-1){
			boodschap=" (de link wordt geopend in uw mail programma)";
		}
		if (oldHtml.indexOf("<img src")>-1 || link.indexOf("mailto:")>-1){
			newHtml=oldHtml;
		}
		$(this).attr('title', oldTitle + boodschap);
		$(this).html(newHtml);
			
	}).find('img').each(function(){
		var oldAlt =$(this).attr('alt'); //alt text
		var boodschap=" (link opent in een nieuw venster)";
		if(oldAlt==undefined){
			oldAlt="";
		}
		if (oldAlt.indexOf("nieuw venster")>-1){
			boodschap="";
		}
		$(this).attr('alt', oldAlt + boodschap);
		});
});