$(document).ready(function(){

	$('#photo').tntSlideshow({
		speed: 1000,
		interval: 5000,
		autoPlay: true,
		random: true
	});
	
	makeMailLinks($('span.email'));
	
	$('ul.thumbs li a').lightBox({
		imageBtnPrev:			'_images/prev.gif',			// (string) Path and the name of the prev button image
		imageBtnNext:			'_images/next.gif',			// (string) Path and the name of the next button image
		imageBtnClose:			'../_images/close.gif',		// (string) Path and the name of the close btn
	});
	
});

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