/*jslint evil: true, forin: true */
/**!
 * initial scripting
 * This script is ran early, it does initial setup to cut down on screen flicker when the full js is loaded.
**/

(function( window, undefined ) {

	// Use the correct document accordingly with window argument (sandbox)
	var document = window.document;
	var eHTML = document.getElementsByTagName('html')[0];
	eHTML.className = eHTML.className.replace('no-js','');

})(window);
