// JavaScript Document

$(document).ready(function() {
	
	$(function(){
		var spt = $('span.mailme');
		var at = / at /;
		var dot = / dot /g;
		var addr = $(spt).text().replace(at,"@").replace(dot,".");
		$(spt).after('<a href="mailto:'+addr+'" title="Send an email">'+ addr +'</a>')
		$(spt).remove();
	});
	
	$(".post img.alignleft, .post img.alignleft, #comments img.avatar, #work_list img").addClass("img_framed");
	
	$(".says").remove();
	
	$("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'fast',theme:'light_square'});


});

