/*
 * Removes the 'nojs' class from all elements if javascript is enabled and this script executed.
 */
window.addEvent('domready', function() {
	$$('.nojs').removeClass('nojs');
});