/**
 * Schutz der E-Mail-Adressen
 */

var e_1 = new Array('ron.hofer','contact','labor','bewerbung');

function link_email(i) {
	if(i>=0 && i < e_1.length){
		email = e_1[i]+"@useeds.de";
    location.href = "mailto:"+email;
  }
}
