$(document).ready(function() {
	slideShow('div#slideshow');
	makeMailLinks($('span.email'));
});

function slideShow(element) {
	if($(element).length>0){
		setInterval(function() {
			if($(element).children('img:visible:eq(0)').prev().size()>0) {
				$(element).children('img:visible:eq(0)').prev().show();
				$(element).children('img:visible:eq(1)').fadeOut(1500);
			}
			else {
				$(element).children('img:last').fadeIn(1500, function() {
					$(element).children('img:visible').not(':last').fadeOut(1500);
				});
			}
		}, 3000);
	}
}



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