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