//$("#img1").fadeIn(6000);

/*
// na 5 seconden de fadeOut starten
jQuery.fn.delay = function(time,func){
    return this.each(function(){
        setTimeout(func,time);
    });
};
$('#page').delay(1000, function(){$(#img1').fadeOut()});

// de fadeOut zelf duurt 5 seconden
$('#img1').fadeOut(5000)
*/



$(function(){
	$("#img1").hide();
	$("#img0").show();
	$("#img1").fadeIn(1500);
});
$(function(){
   setTimeout(function() {
     $("#img1").fadeOut(1500, function() {
	$("#page, #main-nav-wrap").fadeIn(1250);
	$("#logo").fadeIn(1500);
  });
 }, 1250);
});


   

