$(function() {
	imgSetup();
	convertMailLinks();
	$(window).resize(doResize);
});

function imgSetup() {
	$('img').each(function() {
		$(this).attr('title', '');
	});
}

function doResize() {
	var height = $(window).height();
	if (height < 800) { $('#wrapper').addClass('small'); } else { $('#wrapper').removeClass('small'); }
}

function convertMailLinks() {
	$('span.mail-link').each(function() {
		var $this = $(this);
		var oldAddress = $this.text();
		var newAddress = oldAddress.replace(" ","@");
		$this.after("<a target='_blank' href='mailto:"+newAddress+"'>"+newAddress+"</a>");
		$this.remove();
	});
}

