$(document).ready(function() {
// ULKOISET LINKIT
	$('#pagetext a').filter(function() {
		if($('img', this).attr('alt') != 'External link') {
			return this.hostname && this.hostname !== location.hostname;
		}
	}).after(' <img src="images/external.png" alt="External link">');
	
});