/*
 This removes the "no-js" class on the BODY element, giving both CSS and JS
 an easy way to control the look and feel of the site in both JS-enabled
 and JS-disabled browsers.
 */
document.getElementsByTagName('body')[0].className = "";

/*
 This is IE conditional javascript, which will execute for IE versions
 older than IE 7. In those old browsers, we show a unified but minimal
 set of styles (done by Andy Clarke, see the URL below), and also add
 a warning to the top of the page urging viewers to upgrade to a more
 modern browser. The recommended browser is Safari, which is the most
 standards-compliant and cutting-edge browser available today.
 
 For the IE 6 Universal Stylesheet by Andy Clarke, please see:
 http://forabeautifulweb.com/blog/about/universal_internet_explorer_6_css/
 */

/*@cc_on 
 @if ( @_jscript_version < 5.7 )
 var warning = document.createElement('p');
 warning.innerHTML = "You're seeing this page with minimal styles because you are using an old and insecure browser that is no longer supported by its manufacturer. <a href=\"http://www.apple.com/safari/\" rel=\"external\">Please upgrade to a modern web browser</a>.";
 document.body.insertBefore(warning, document.getElementById('content'));
 document.getElementsByTagName('link')[0].href = "http://files.farukat.es/v1/old-ie.css";
 @end
 @*/