// This script requires Jquery to be active on the site before loading
// If Jquery is disabled or modified please update this script accordingly.

//document.body.className += ' js-enabled';

/*
$(document).ready(function () {
							
	$("#jswarn").css({"display" : "none"});
	
});
*/


//<![CDATA[

if(document.createStyleSheet) {

document.createStyleSheet('/build/jswarn/jshide.css');

}

else {

var styles = "@import url(' /build/jswarn/jshide.css ');";

var newSS=document.createElement('link');

newSS.rel='stylesheet';
newSS.type='text/css';
newSS.href='/build/jswarn/jshide.css';

document.getElementsByTagName("head")[0].appendChild(newSS);

}

//]]>


/*
 function addLoadEvent(func) {
    var oldonload = window.onload;
    if (typeof window.onload !== "function") {
        window.onload = func;
    } else {
        window.onload = function () {
            if (oldonload) {
                oldonload();
            }
            func();
        };
    }
 }
 var noscript = addLoadEvent(noscript);
 addLoadEvent(function () { 



 });
 
 function noscript()
 {
   if (document.removeChild)
     {
       var div = document.getElementById("jswarn");
           div.parentNode.removeChild(div);
     }
   else if (document.getElementById)
     {
       document.getElementById("jswarn").style.display = "none";
     }
 }
*/