function dom_init() {
	
	// MAILTO
	// <a class="mailer" rel="tobi/antary.de" href="#"></a>, <noscript></noscript>	
	$('a.mailer').each(function() {
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
	
	// target _blank
	$('a[href^="http://"]').each(function(){
		$(this).attr("title", "öffnet externen Link in einem neuen Fenster");
		$(this).attr("target", "_blank");
		/*
		if (  $(this).hasClass("arrow")  )
		{
			$(this).css({ 'background' : 'url(/img/all/arrow_extern.gif) 1px 1px no-repeat' });
		}
		*/
	});
	
	// PDF
	$('a[href*=".pdf"]').each(function(){
		$(this).attr("title", "öffnet PDF in einem neuen Fenster");
		$(this).attr("target", "_blank");
	});

	// TOOLTIP
	$('div.textcontainer img[title], div.textcontainer a[title]').tooltip({
		delay:100,
		track:true,
		showURL:false,
		top:10,
		left:10,
		fade: 250,
		bodyHandler: function() {
			return this.tooltipText;
		}
		// showBody: " - "; //extraClass: "fancy"
	});
	
	
}
