//********************************************************************************************************
//Last Update:  1-18-06
//
//This include file is used to test for IE browsers so that it may setup the CSS in the menubar properly.
//This is necessary due to the limitations on IE.  The reason this is in a separate file from the "banner" include
//is that this section MUST be located in the <HEAD> section of the HTML document.  The banner/menubar must be 
//located in the <BODY> section.
//
//Note:  This include file is used in conjunction with "banner.js".
//This file is REQUIRED for the menubar function to work properly.
//
//********************************************************************************************************

document.writeln('<!-- Tests for IE & sets up workaround for CSS inside IE (Required)--> ');
document.writeln('<!--[if IE]><STYLE type=text/css media=screen>');
document.writeln('	body {');
document.writeln('		behavior: url(../css/csshover.htc);');
document.writeln('		font-size: 100%;');
document.writeln('	}');

document.writeln('#menu ul li {float: left; width: 100%;}');
document.writeln('#menu ul li a {height: 1%;} ');

document.writeln('#menu a, #menu h2 {');
document.writeln('	font: bold 0.7em/1.4em arial, helvetica, sans-serif;');
document.writeln('}');
				
document.writeln('</STYLE>');
document.writeln('<![endif]-->');

