/*
 * this init.js is the only script, that is referenced in the header and executes immediatly.
 * All other js is injected at the end of the page.
 * Put all code that should be triggered instantly, here
 * Remember, jquery is not yet loaded. write your code in plain old javascript here
 * 
 */

// adds class js to html tag */
window.jsed = (function(window,doc,undefined) {
	var dec = doc.documentElement.className;
	doc.documentElement.className=dec.indexOf('no-js')!= -1 ? (dec == 'no-js' ? 'js' : dec.replace(/\bno-js\b/,'') + ' js') : (dec == '' ? 'js' : dec +' js');
})(this,this.document);


