﻿$(document).ready(function(){
	tntBox($('a.tntbox'), false);
	makeMailLinks($('span.email'));
	runEffects();
});

function makeMailLinks(element){
	element.each(function(){
		var theAddress = $(this).text().replace(/ \(at\) /, "@");
		$(this).replaceWith($('<a href="mailto:'+theAddress+'">'+theAddress+'</a>'));
	});
}

function runEffects(){
	$('a.tntbox>img').fadeIn(1000).hover(function(){
		$(this).stop().animate({opacity: 0.7});
	}, function(){
		$(this).stop().animate({opacity: 1});
	});
	
}
