$(document).ready(function() {
    // fix for target=_blank
	// Zowel voor de external als voor de nofollow ( = voor zoekmachines niet te laten doorverwijzen )
	$("a[rel='external']").click(function() {  
		window.open($(this).attr("href")); 
		return false; 
	});
	$("a[rel='nofollow']").click(function() {  
		window.open($(this).attr("href")); 
		return false; 
	});	
	
    });  
