/*
 * Attention IE6: Get a better browser!!!
 * Version: 1.0.0 (02/16/2009)
 * Copyright (c) 2009 Adrian Pelletier
 * Feel free to use however you want: http://creativecommons.org/licenses/by/3.0/

<!--[if lte IE 6]>
    <link rel="stylesheet" type="text/css" href="code/archive_alert/css/ie6.css" media="screen" />
    <script type="text/javascript" src="code/archive_alert/js/jquery.min.js"></script>
    <script type="text/javascript" src="code/archive_alert/js/attention_ie6.js"></script>
<![endif]-->

*/

/* original
$(window).load(function () {
  $("body").prepend('<p id="attention_ie6"><a href="http://www.mozilla.com/firefox/" title="Download Firefox now!">Warning: your browser is outdated and may not display this page correctly. Click here to resolve this issue...</a></p>');
  $("#attention_ie6").css('display','none');
  $("#attention_ie6").slideDown();
});
*/

// custom for scot faulkner
$(window).load(function () {
	document.body.innerHTML = "<div class=\"ie6_container\">" + document.body.innerHTML + "</div>";
  $("body").prepend('<div id="attention_ie6"><table cellpadding="0" cellspacing="0" border="0" class="att_ie6"><tr><td>This 1996 archive of the OnlineCAO is for historical and review purposes only.</td></tr></table></div>');
  $("#attention_ie6").css('display','block');
});

