
// mailmask

$.fn.noSpam = function() {
	at = '@';
	return this.each(function(){
		e = null;
		$(this).find('span').replaceWith(at);
		e = $(this).text();
		$(this).attr('href', 'mailto:' + e);
	});
};

		$('a.escape').noSpam();
						
if(jQuery("a[rel=lightbox]").length > 0){
	$("a[rel=lightbox]").fancybox({
		'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic'
		});
}


