/* Bildegalleri */  
$("img.imageGalleryThumb").click(function() { 
	$('li.large').hide(); //Skjuler stor bilde

	$('li.'+this.id).animate({
		"opacity": "show"
	});
	
	$('img.imageGalleryThumb').removeClass('selected'); //Fjerner class på thumb
	$(this).addClass('selected'); // Legger til class på thumb
});