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(a[href^=http://benjamin.wittorf.me]):not(a[class*="nofavicon"]):not(a[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.fn.languager=function(){jQuery('#content a[hreflang=de]').append(' <small><dfn title="Link in German">(de)</dfn></small>');};jQuery(document).ready(function(){jQuery(document.body).languager()});ChiliBook.recipeFolder = '/meta/js/chili/';