/* Author: Andreas Walter */
/* Company: Euroweb Internet GmbH */
/* Copyright: 2009 - Andreas Walter & Euroweb Internet GmbH */

/* ///////////////////////////////////////////////////////////
	=> mailmask 
/////////////////////////////////////////////////////////// */

function noSpam() {
	if (document.getElementById) {
		var at = "@";
		var links = document.getElementsByTagName('a');
		for (var i = 0; i < links.length; i++) {
			var linkElem = links[i];
			if (linkElem.className == 'escape') {
				var mail = linkElem.firstChild; var domain = linkElem.lastChild;
				mail.nextSibling.firstChild.innerHTML = at;
				linkElem.href = "mailto:" + mail.data + at + domain.data;
			}
		}
	}
}

/* ///////////////////////////////////////////////////////////
	=> on load 
/////////////////////////////////////////////////////////// */
Cufon.replace('#navi-add a',{hover: true});
Cufon.replace('#navi a',{textShadow:'-1px 1px 2px #4e9107',hover: true});
Cufon.replace(['#content-main h2','#content-main h3','#content-main h4','#content-sidebar h2','#content-sidebar h3','#bottom h2','#bottom h3',]);
Cufon.replace('blockquote p',{hover: true});

$(function(){	   
	$("body").addClass("hasJS");
	noSpam();
	$("a[rel='colorbox']").colorbox();
	$("a[rel='lightbox']").colorbox();
});