<!-- Begin VERTICAL CSS DROP MENU VER 1.50 2008

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY


var showtop		= "no"		//  SHOW TOP MENU IMAGE
var showimage		= "no"		//  SHOW BOTTOM MENU IMAGE


document.write('<div id="menulocation" class="printhide">');
   if (showtop == "yes") {
document.write('<img src="http://perfline.com/home/picts/menu-top.jpg" width="150" height="125" class="menutop"></a><br>');
}
document.write('<table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td class="topmargin">');
document.write('<ul id="top-nav">');




// START MENU LINKS - EDIT BELOW THIS AREA

// MENU SEPARATOR 1
document.write('<li class="menuseparator"></li>');



document.write('  <li class="menuT"><a href="http://perfline.com/drawbridge/index.html" target="_blank">Login</a></li>');




// MENU SEPARATOR 2
document.write('<li class="menuseparator"></li>');






document.write('  <li class="menuT"><a href="http://perfline.com/main/journal.cgi?folder=revonline" target="_blank"  class="parentM">C. Education</a>'); 

document.write('  <li class="menuT"><a href="http://perfline.com/topten/index.shtml" target="_blank" class="parentM">Top Ten</a>');

document.write('  <li class="menuT"><a href="http://perfline.com/textbook/textbook.html" target="_blank" class="parentM">Textbook</a>');

document.write('  <li class="menuT"><a href="http://perfline.com/notebook/index.shtml" target="_blank" class="parentM">Notebook</a>');

document.write('  <li class="menuT"><a href="http://perfline.com/studexam/index.htm" target="_blank" class="parentM">C. E. Quizzes</a>');

document.write('  <li class="menuT"><a href="http://perfline.com/congenital/index.shtml" target="_blank" class="parentM">Congenital</a>');

document.write('  <li class="menuT"><a href="http://perfline.com/newseng/viewnews.cgi" target="_blank" class="parentM">Perfusion News</a>');

document.write('  <li class="menuT"><a href="http://perfline.com/links/Guidelines_and_Protocols/" target="_blank" class="parentM">Guidelines</a>');


// MENU SEPARATOR 3
document.write('<li class="menuseparator"></li>');



document.write('  <li class="menuT"><a href="http://perfline.com/cards/cards.html" target="_blank" class="parentM">Send a Card</a>');

document.write('  <li class="menuT"><a href="http://perfline.com/benmitch/index.html" target="_blank" class="parentM">Bennett A. Mitchel</a>');

// MENU SEPARATOR 4
document.write('<li class="menuseparator"></li>');

// END LINKS //



document.write('</ul>');
document.write('</td></tr><tr><td align="center">');




// START MENU IMAGE


   if (showimage == "yes") {
document.write('<br><br><a href="index.htm"><img src="http://perfline.com/home/picts/menu-image.jpg" width="150" height="75" border="0" class="borders-menuimage"></a><br><br><br>');
}






document.write('</td></tr></table>');
document.write('</div>');


//  End -->




// COPYRIGHT 2008 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE




function IEHoverPseudo() {

	var navItems = document.getElementById("top-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}

}
window.onload = IEHoverPseudo;