// execute your scripts when the DOM is ready. this is a good habit

	$(function() {
            $(".nav").lavaLamp({ 
                fx: "backout", 
                speed: 300,
                click: function(event, menuItem) {
                    return true;
                }
            });
        });

 $(document).ready( function(){ $('ul.slideshowul').innerfade({ animationtype: 'fade', speed: 1900, timeout: 8000, type: 'random', containerheight: '277px' });   } );  
															  
$(function() {
$('ul.nav li:first-child').addClass( 'eerste' );
$('ul.nav li:last-child').addClass( 'laatste' );
});

$(function(){  // $(document).ready shorthand
  $('.slogan').hide().fadeIn(7000);
});

