/** =splash intro
************************************************************/
/* $(document).ready(function() {
  $hideItems = $('.wrapper-inner, .footer, .make-it');
  if (!$.cookie('splash_shown')) {
    $('body').append('<a href="#" id="make-it-intro" title="Click To Enter">Make It</a>');
    $('#make-it-intro').click(function() {
      $.cookie('splash_shown', 'show', {expires: 90, path: '/'});
      $hideItems.fadeIn();
      $(this).remove();
      return false;
    });
  }
  
  $(window).bind('load', function() {
    setTimeout(function() {
      $.cookie('splash_shown', 'show', {expires: 90, path: '/'});
    }, 200);
    
  });
  
}); */
