/*
 * Init js file
 * Adds a 'js' class on body element to provide
 * extra CSS hook for javascript interaction
 * Ex: in order to hide with CSS a hide-and-show block to prevent flickering
 * 
 */

// Enabling strict mode
"use strict";

// JSLint Global variables
/*global window */


window.onload = function initJS() {
	document.getElementsByTagName('body')[0].className = 'js';
};