// JavaScript Document
$(document).ready(function(){

	// email anti-spam
	$('span.snd_eml').each(function(i){
		var c = $(this).text().split(' (0) ').join('@');
		var t = $(this).attr('title');
		if (t)	$(this).replaceWith('<a href="mailto:' + c + '">' + t + '</a>');
		else 	$(this).replaceWith('<a href="mailto:' + c + '">' + c + '</a>');
	});
});