$(function() {
    $('h1,h2,h3,h4,h5,h6,#navi a').each(function() {
    	var html = $(this).html();
    	html = html
    			.replace('ä', 'a')
    			.replace('ö', 'o')
    			.replace('å', 'o')
    			.replace('Ä', 'A')
    			.replace('Ö', 'O')
    			.replace('Å', 'O');
    	$(this).html(html);    	
    });
});

