$(document).ready(function() {
	// Add pdf icons to pdf links
	$("a[href$='.pdf']").before('<img src="/themes/kirche/css/img/icons/pdf.png" alt="PDF" /> ');
	 
	// Add txt icons to document links (doc, rtf, txt)
	$("a[href$='.doc'], a[href$='.txt'], a[href$='.rft']").before('<img src="/themes/kirche/css/img/icons/txt.png" alt="TXT" /> ');

	// Add zip icons to Zip file links (zip, rar)
	$("a[href$='.zip'], a[href$='.rar']").before('<img src="/themes/kirche/css/img/icons/zip.png" alt="ZIP" /> ');
	
	// Add email icons to email links
	$("a[href^='mailto:']").before('<img src="/themes/kirche/css/img/icons/email.png" alt="email" /> ');

	//Add external link icon to external links - 
	$('a').filter(function() {
		//Compare the anchor tag's host name with location's host name
	    return this.hostname && this.hostname !== location.hostname;
	  }).after(' <img src="/themes/kirche/css/img/icons/ext_link.png" alt="external link" />');
});
