$('html').addClass('js');

$(function(){
  $('#splash a').click(function(){
    fadeAndSetLocation($(this).attr("href"), '#you, #brand, #point3');
    return false;
  });
});

$(window).load(function(){
  $('#you').fadeIn(750, function(){
    $('#brand').fadeIn(750, function(){
      $('#point3').fadeIn(750);
    });
  });
});
