// Add the js class to the html element
document.getElementsByTagName('html')[0].className = 'js';
// Only show the home page transition if someone is coming from outside the website
var referrer = document.referrer;
var host = '/'+window.location.host+'/';
if (!referrer.match(host)) {
  document.getElementsByTagName('html')[0].className = 'js transition';
}
