﻿//relayout login boxes and other things as necessary when javascript is enabled
var headID = document.getElementsByTagName("head")[0];
var newCss = document.createElement('link');
newCss.rel = 'stylesheet';
newCss.type = 'text/css';
newCss.href = '/styles/jsEnabled.css';
headID.appendChild(newCss);