_uacct = "UA-213130-7";
urchinTracker();

$(document).ready(function() {
	elements = $('a.email');
	if(elements){
		for(i=0;i<elements.length;i++){
			if(elements[i].firstChild){
				address_to_replace=elements[i].firstChild;
				real_address=address_to_replace.nodeValue.replace("*a*", "@");
				address_to_replace.nodeValue=real_address;
				address_to_replace.parentNode.setAttribute("href", "mailto:"+real_address);
			}
		}
	}
	elements = $('a.thickbox');
	if(elements){
		for(i=0;i<elements.length;i++){
			elements[i].setAttribute("href", "contact.php?keepThis=true&TB_iframe=true&height=350&width=500");
		}
	}
});


function submitKontakt(form){
	if((form.email.value=="")||(form.message.value=="")){
		alert('Geben Sie bitte Ihre E-Mail Adresse und eine Nachricht an.');
		return false;	
	}
	else{
		return true;	
	}
}