jQuery(document).ready(function(){
	$('.accordion .head').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
	
	//Removes border-bottom from image links
	$('img').parents('a').css("border-bottom","0");
	
	//Gets the right cursor for headline links
	$('a').parents('h2').css('cursor','pointer');
	
	//Hides my email from spam bots
	var spt = $('span.mailme');
	var at = / at /;
	var dot = / dot /g;
	var addr = $(spt).text().replace(at,"@").replace(dot,".");
	$(spt).after('<a href="mailto:'+addr+'" title="Skicka gärna ett mail!">'+ addr +'</a>')
	.hover(function(){window.status="Skicka gärna ett mail!";}, function(){window.status="";});
	$(spt).remove();
});
