/**
 * The domready event which sets the "js-enabled" class to the body is sometimes
 * delayed (for no apparent reason), during which the non-js layout is visible.
 * This file should not be needed, but it is nonetheless.
 */

var body = document.body;
if(body) {
	body.className += ' js-enabled';
}
