jQuery.fn.favicons=function(conf){var config=jQuery.extend({insert:'appendTo',defaultIco:'/meta/images/url.gif'},conf);return this.each(function(){jQuery('a[href^=http]:not([href^=http://immersion.io]):not([class*="nofavicon"]), a[href^=http://immersion.io][rel=external]',this).each(function(){var link=jQuery(this);var faviconURL=link.attr('href').replace(/^(http:\/\/[^\/]+).*$/,'$1')+'/favicon.ico';var faviconIMG=jQuery('<img src="'+config.defaultIco+'" alt="◾" class="favicon" />')[config.insert](link);var extImg=new Image();extImg.src=faviconURL;if(extImg.complete){faviconIMG.attr('src',faviconURL);}
else{extImg.onload=function(){faviconIMG.attr('src',faviconURL);};}});});};jQuery(document).ready(function(){jQuery(document.body).favicons({insert:'prependTo'});/*jQuery('#footer').css('marginBottom', '95px')*/});jQuery.fn.languager=function(){jQuery('.format_text a[hreflang=en],.comment a[hreflang=en]').append(' <small><dfn title="Link in englischer Sprache">(en)</dfn></small>');};jQuery(document).ready(function(){jQuery(document.body).languager()});