			function my_email() {
				$('a.email').each(function(){
				e = this.rel.replace('/','@');
				this.href = 'mailto:' + e;
				$(this).text(e);
				});				
			}


$(document).ready(function(){
						 
my_email();

$('.fancy').fancybox({
					'hideOnContentClick': false,
					'frameHeight' : 400,
					'frameWidth' : 500,
					'overlayOpacity': .5
					 });

});
