$(document).ready(function(){
/////////////////////////////////////////

$("body").removeClass('njs');

// Email -> link
$('span.email').each(function(){
	var at = '(ät)';
	var dot = '(dot)';
	var addr = $(this).text().replace(at,"@").replace(dot,".");
	{ $(this).html('<a href="mailto:'+addr+'" title="Send email">'+ addr +'</a>'); }
});

// Comic list popup
$('.nav h1').click(function() {
	$(this).next('.list').toggle();
	return false;
});
// Hide comic list popup
$('body').click(function() { $('.list').hide(); });

/////////////////////////////////////////
});