   $('<p class="messageLoad"/>')
            .append('Laster bildene ... ')
            .insertAfter('h4');     
             $('div.thumbnails img').css({            
            opacity: 0,
            height: 0,
            width: 0            
        })
			.whenLoaded(function(){            
            $('.messageLoad').slideUp(function(){
                $(this).remove();
            });            
            var all = $(this);            
            function fadeIn(i) {
                if(!all[i]) { return; }
                $(all[i]).animate({
                    opacity: 1,
                    height: '60px',
                    width: '60px'
                },400);
                setTimeout(function(){
                    fadeIn(i+1);
                },200);
            }            
            fadeIn(0);       
        }); 
		$(document).ready(function(){
$(".thumbnails img").fadeTo("slow", 1.0);
$(".thumbnails img")
.hover(function(){
$(this).fadeTo("slow", 0.4);
},function(){
$(this).fadeTo("slow", 1.0);
});
}); 
	$(document).ready(function(){
	$(document).ready(function () {
	$('.illustrasjon').fadeIn(4800);

		});
		});
