var media_root = 'http://media.dogtooth.cannedtuna.org/pladderbranchen';

var fix_headers = function(root) {
	root.getElements('h2').forEach(function(header) {
		header.setStyles({
			'padding' : '0 0 0 5px'
			,'height' : '12px'
			,'overflow' : 'hidden'
		});
		var text = header.get('text').trim().toLowerCase().split('');
		header.empty();
		new Element('img', {
			'src' : media_root + '/gfx/alphabet/+'
			,'alt' : ''
		}).inject(header);
		text.forEach(function(ch) {
			if (ch == ' ')
				ch = 'space';
			if (ch == 'æ')
				ch = 'ae';
			if (ch == 'ø')
				ch = 'oe';
			if (ch == 'å')
				ch = 'aa';
			new Element('img', {
				'src' : media_root + '/gfx/alphabet/' + ch
				,'alt' : ''
			}).inject(header);
		});
	});
}

document.addEvent('domready', function() {
	fix_headers(document);
});

