/* Author: 
Gregory Chambers
*/

/*
 * The WebFont Loader gives developers greater control over the font loading process 
 * to control the flash of unstyled text while the font file is loading. 
 * Similar to the fonts in the font directory, it can be loaded from Google's servers.
 */

  WebFontConfig = {
    google: { families: [ 'Philosopher' ] }
  };
  (function() {
    var wf = document.createElement('script');
    wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
        '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
    wf.type = 'text/javascript';
    wf.async = 'true';
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(wf, s);
  })();






















