$(window).load(function(){
  $("#splash").delay(40300).fadeOut('slow');
  });

$(document).ready(function(){
  $("#splash").click(function() {
    $(this).hide();
    $("#container-index").show();
  });
});




