window.onload = function ()
{
	var head = document.getElementsByTagName("head")[0];
	
	var link = document.createElement("link");
	link.rel = "stylesheet";
	link.href = "/resources/styleSheets/jsEnabled.css";
	link.type = "text/css";
	link.media = "all";
	head.appendChild(link);
};
