$(function(){
	// Emails
	$(".email").each(function (){
		$(this).html($(this).html().replace(/ at /, "@").replace(/ dot /, "."));
		$(this).attr('href', "mailto:" + $(this).html());
	});
	
	// Light Box
	$("a.video").fancybox({
		'type'			:	'swf',
		'overlayShow'	:	true,
		'overlayOpacity':	.7,
		'overlayColor'	:	'#000',
		'centerOnScroll':	true
	});
});
