// preloaded background image and fade it in after it finishes loading
$('<img />')
  .attr('src', '/images/backgrounds/zingen.jpg')
  .load(function(){
      // background fade-in
      $('#backgroundfade').fadeOut(1500);
  });

