// JavaScript Document
$(document).ready(function() {
	// fancyzoom
	setupZoom();
	
	// email linx
	$("a.email").click(function(){
		var targ = $(this).attr("href");
		var email = targ.replace("_at_","@");
		var email = email.replace("_dot_",".");

		window.location = "mailto:"+email;
		
		return false;
	});
	
	// remove their horrible inline styles coming in from the blog
	$("#contentnews span").removeAttr("style");
});
