$(document).ready(function()
{
	var domain = document.URL.replace('www.', '').split('/')[2];
	var links = $("a.js2mail");
	
	for (var i = 0; i < links.length; i++)
	{
		address = links[i].className.split(' ')[1] + '@' + domain;
		links[i].href = 'mailto:' + address;
		$(links[i]).html(address);
	}
	
	// // Mouseover -> show E-Mail Adress and add href
	// $("a.js2mail").mouseover(function()
	// {
	// 	this.to_remember = $(this).html();
	// 	var address = this.className.split(' ')[1] + '@' + domain;
	// 	this.href = 'mailto:' + address;
	// 	$(this).html(address);
	// });
	// 
	// // Mouseout -> hide E-Mail Adress and remove href
	// $("a.js2mail").mouseout(function()
	// {
	// 	this.href = '';
	// 	$(this).html(this.to_remember);
	// });	
});