$(document).ready(function(){
  //Select thumbnail based off URL
  var url = window.location.href;
  $('#about-header a[href="'+ url + '"]').addClass('selected');
  
  if(url == 'http://shutdown.skimbee.com/about' || url == 'http://kill9.skimbee.com/about' ||url == 'http://www.kill9studios.com/about' || url == 'http://shutdown.kill9studios.com/about')
    $('#about-header a:eq(0)').addClass('selected');

  $('#about-header a:eq(2)').css('text-transform', 'capitalize');
});