/***********************************************
* @namespace - CSS loading class
* @description - applies the class name to the html with javascript as quickly as possible to make the page render without a jump
***********************************************/
var elements = document.getElementsByTagName("html");
elements[0].className += " JSEnabled";

