function loadDefault() {
	initiateShowIntroduction();
}

function initiateShowIntroduction() {
	var spans = document.getElementsByTagName('span');
	for (var i = 0; i < spans.length; i++) {
		if (spans[i].getAttribute('class') == 'full-story') {
			spans[i].style.display = 'none';
			var fullstory	= spans[i];
			var link		= document.createElement('a');
			link.href		= '#';
			link.onclick	= function showIntroduction() {
				this.previousSibling.style.display = 'inline';
				this.parentNode.removeChild(this);
				return false;
			}
			var linkText	= document.createTextNode("Läs\u00A0mer\u00A0\u00BB");
			link.appendChild(linkText);
			var parent = fullstory.parentNode;
			if(parent.lastchild == fullstory) {
				parent.appendChild(link);
			} else {
				parent.insertBefore(link, fullstory.nextSibling);
			}
		}
	}
}
