<!--
var timeout         = 100;
var closetimer	    = 0;
var ddmenuitem      = 0;

// open hidden layer
function mopen(id)
{	
	// cancel close timer
	mcancelclosetime();

	// close old layer
	if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';

	// get new layer and show it
	ddmenuitem = document.getElementById(id);
	ddmenuitem.style.visibility = 'visible';
}
// close showed layer
function mclose()
{
	if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}

// go close timer
function mclosetime()
{
	closetimer = window.setTimeout(mclose, timeout);
}

// cancel close timer
function mcancelclosetime()
{
	if(closetimer)
	{
		window.clearTimeout(closetimer);
		closetimer = null;
	}
}

// close layer when click-out
document.onclick = mclose; 
// -->

document.write('<!--[if IE 6]> ');
document.write('<style>');
document.write('.logintop{padding-bottom:1px;}');
document.write('.triangle{top:-2px;}');
document.write('.on_tab1,.on_tab2,.on_tab3,.on_tab4,.on_tab5,.on_tab6{top:-3px;}');
document.write('</style>');
document.write('<![endif]--> ');

document.write('<div class="tabholder">');

// FOR TWO LINES OF TEXT WITHIN TABS, USE "twolines" CLASS (EX: class="tab1 left twolines")
// CHANGE UL CLASS TO MATCH NUMBER OF TABS (EX: For four tabs, use class="tabs4")

document.write('<div style="float:left;">');
document.write('<ul id="sddm" class="tabs5"> ');
document.write('<li><a href="/employer/index.html" class="left">Home</a> ');
document.write('</li> ');
document.write('<li><a href="/employer/downloadableforms.htm" class="twolines">Downloadable Forms</a> ');
document.write('</li> ');
document.write('<li><a href="/employer/resources/index.htm">Resources</a> ');
document.write('</li> ');
document.write('<li><a href="/onlinedirectory/index.htm" target="_blank">Provider Finder&reg;</a> ');
document.write('</li> ');
document.write('<li><a href="/employer/contact_us.htm" class="right">Contact Us</a> ');
document.write('</ul> ');
document.write('</div>');
document.write('<div class="logintop">');
// insert alert below
document.write('<!--<b>News Alert:</b> Swine flu hits<br>midwest. <a href="#">See full report</a>-->');

// end alert message
document.write('<div class="panel_button" style="display: visible;"><a href="/employer/login.html" />Log In</a></div></div>');
document.write('<div style="clear:both"></div>');
document.write('</div>');
