$(document).ready(function() {
    // If href is an external link, add target="_blank".
    $("a").each(function(){
        if ($(this).attr('rel') == 'external') {
            $(this).attr('target', '_blank');
        }
    });

    $('input.prefilled, textarea.prefilled').each(function(){
		return function() {
			el = $(this);
			el.attr('prefilled', el.val());
			el.focus(function(){
				if (this.value == $(this).attr('prefilled')) {
					this.value = '';
				}
			});
			el.blur(function(){
				if (!this.value) {
					this.value = $(this).attr('prefilled');
				}
			});
		}
	}());

    $(".readmore").html("Lees verder...");
});
