//jQuery functions
	$(document).ready(function(){
	
		$(".btn-slide").click(function(){
			$("#panel").slideToggle("fast");
			$(this).toggleClass("active"); return false;
		});
		
		$("a.tooltip").hover(function() {
			$(this).children("em").show();
		}, function() {
			$(this).children("em").hide();
		});
		
		$(".striped tbody tr:odd").addClass("alt-row");
		 
	});
//jQuery functions end

function glossaryTerms() {
  window.open('/custhelp/glossary.htm', '', 'toolbar=no,location=no,scrollbars=yes,resizable=yes,width=450,height=200');
}