$(document).ready(function($) {
	$('.ImageAlbum').each( function(index) {
		var html = $(this).html();
		var pictureNameStartIndex = html.indexOf('ImgLarge') + 23;
		var pictureNameEndIndex = html.indexOf('ImgSmall') - 69;
		var pictureName = html.substring(pictureNameStartIndex, pictureNameEndIndex);
	
		pictureName = pictureName.replace(/%C3%A6/g, 'æ').replace(/%C3%B8/g, 'ø').replace(/%C3%A5/g, 'å').replace(/%C3%86/g, 'Æ').replace(/%C3%98/g, 'Ø').replace(/%C3%85/g, 'Å').replace(/%20/g, ' ').replace(/_/g, '.');
		
		$(this).append(pictureName);
	  });
	
	var contactInfo = $("#ContactInfo").detach();
	contactInfo.appendTo("#Main3");
});