/////////////////////////////////////////////////////////////////////////////
// Function : NavNode (constructor)
// Comments :
/////////////////////////////////////////////////////////////////////////////
function NavNode(id, label, href, parent)
{
	this.m_parent = null;
	this.m_level = 0;

	if (parent)
	{
		this.m_parent = parent;
		this.m_level = parent.m_level+1;
	}

	this.m_id = id;

	// assume that m_label will most often be used directly as HTML
	this.m_rawlabel = label;

	label = label.replace(/&/g, '&amp;');
	label = label.replace(/</g, '&lt;');
	label = label.replace(/>/g, '&gt;');
	label = label.replace(/"/g, '&quot;');

	this.m_label = label;

	this.m_href = href;
	this.m_subNodes = new Array();

	var argValues = NavNode.arguments;
	var argCount = NavNode.arguments.length;

	for (i = 4 ; i < argCount ; i++)
	{
		var eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		eval("this.cp_" + attrName + " = '" + attrValue + "';");
	}

	NavNode.prototype.addNode = addNode;
	NavNode.prototype.isSelected = isSelected;
}

/////////////////////////////////////////////////////////////////////////////
// Function : addNode
// Comments :
/////////////////////////////////////////////////////////////////////////////
function addNode(id, label, href)
{
	var newIndex = this.m_subNodes.length;
	var newNode = new NavNode(id, label, href, this);

	var argValues = addNode.arguments;
	var argCount = addNode.arguments.length;

	for (i = 3 ; i < argCount ; i++)
	{
		var eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		eval("newNode.cp_" + attrName + " = '" + attrValue + "';");
	}

	this.m_subNodes[newIndex] = newNode;
	return newNode;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isSelected
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isSelected()
{
    var pos = window.location.href.lastIndexOf("/");
    var docname = window.location.href.substring(pos+1, window.location.href.length);

    pos = this.m_href.lastIndexOf("/");
    var myname = this.m_href.substring(pos+1, this.m_href.length);

    if (docname == myname)
		return true;
	else
		return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////

var g_navNode_Root = new NavNode('1','Home',ssUrlPrefix + 'index.htm',null,'ImageRendition==Native File','MetaKeywords==Milwaukee County Zoo, Season of Giving Blood Drive, Dec 29-30, 2009','NativeFileImageRendition==true');
g_navNode_3=g_navNode_Root.addNode('5','Donating Blood',ssUrlPrefix + 'donating/index.htm','AltLabel==DONATING \x7cBLOOD','Title==Donating Blood');
g_navNode_3_0=g_navNode_3.addNode('18','Overview',ssUrlPrefix + 'donating/overview/index.htm','AltLabel==OVERVIEW','MetaDescription==Blood donation through BloodCenter of Wisconsin provides important benefits to communities throughout WI. By donating blood, you are doing more good than you know.','MetaKeywords==Blood donation, Donating blood, Advantages of donating blood, Importance of donating blood, Benefit of donating blood, Reasons to donate blood','Title==Blood Donation \x26 Donating Importance\x3a Milwaukee WI');
g_navNode_3_0_0=g_navNode_3_0.addNode('40','About Blood',ssUrlPrefix + 'donating/overview/about/index.htm','MetaDescription==Blood donation is an amazing gift of life. There is a constant need for all blood types and the components that make up blood\x3a red blood cells, blood platelets, plasma, and white blood cells.','MetaKeywords==Facts of blood donation, White blood cells, Red blood cells, Blood platelets, Blood types, Platelets');
g_navNode_3_0_1=g_navNode_3_0.addNode('86','Eligibility - Can You Donate?',ssUrlPrefix + 'donating/overview/eligibility/index.htm','NativeFileImageRendition==true');
g_navNode_3_0_2=g_navNode_3_0.addNode('93','What to Expect When You Donate',ssUrlPrefix + 'donating/overview/expectation/index.htm','MetaDescription==The blood donation process is easy, safe and takes about an hour. In addition to helping save lives, some advantages of donating blood include a \u201cmini physical\u201d and refreshments in our caf\xe9.','MetaKeywords==Blood donation, Advantages of donating blood, Donating blood');
g_navNode_3_0_3=g_navNode_3_0.addNode('213','Find Out What Your Donation Can Do',ssUrlPrefix + 'donating/overview/findout/index.htm');
g_navNode_3_0_4=g_navNode_3_0.addNode('214','It\'s important to know your blood type',ssUrlPrefix + 'donating/overview/bloodtype/index.htm','MetaDescription==The importance of blood types and donations','MetaKeywords==blood donation, blood type, donation');
g_navNode_3_0_5=g_navNode_3_0.addNode('215','Types of Blood Donation',ssUrlPrefix + 'donating/overview/types/index.htm');
g_navNode_3_0_6=g_navNode_3_0.addNode('216','FAQs',ssUrlPrefix + 'donating/overview/faq/index.htm');
g_navNode_3_0_7=g_navNode_3_0.addNode('217','Glossary',ssUrlPrefix + 'donating/overview/glossary/index.htm','NativeFileImageRendition==true');
g_navNode_3_0_8=g_navNode_3_0.addNode('300','Rare Blood Donors',ssUrlPrefix + 'donating/overview/RareBloodDonors/index.htm');
g_navNode_3_1=g_navNode_3.addNode('19','People You Help',ssUrlPrefix + 'donating/people/index.htm','AltLabel==PEOPLE YOU HELP');
g_navNode_3_2=g_navNode_3.addNode('20','Where to Donate',ssUrlPrefix + 'donating/where/index.htm','AltLabel==WHERE TO DONATE','NativeFileImageRendition==false','PortraitImageRendition==false','ThumbnailImageRendition==false','Title==Where to Donate','WordImageRendition==false');
g_navNode_3_2_0=g_navNode_3_2.addNode('59','Upcoming Blood Drives',ssUrlPrefix + 'donating/where/locator/index.htm');
g_navNode_3_2_1=g_navNode_3_2.addNode('42','Brown Deer Donor Center',ssUrlPrefix + 'donating/where/browndeer/index.htm','MetaDescription==Donating blood with BloodCenter of Wisconsin benefits patients in over 50 WI hospitals. BloodCenter collects donations throughout WI, including the donor center inBrown Deer.','MetaKeywords==Blood donation, Donating blood, Blood donation Wisconsin, Blood donation WI, Blood donation Brown Deer Wisconsin, Blood donation Brown Deer WI','NativeFileImageRendition==true','Title==Brown Deer Donor Center');
g_navNode_3_2_2=g_navNode_3_2.addNode('43','Greenfield Donor Center',ssUrlPrefix + 'donating/where/greenfield/index.htm','MetaDescription==Donating blood with BloodCenter of Wisconsin benefits patients in over 50 WI hospitals. BloodCenter collects donations throughout WI, including the donor center in Greenfield.','MetaKeywords==Blood donation, Donating blood, Blood donation Wisconsin, Blood donation WI, Blood donation Greenfield Wisconsin, Blood donation Greenfield WI','NativeFileImageRendition==true','Title==Greenfield Donor Center');
g_navNode_3_2_3=g_navNode_3_2.addNode('47','Kenosha Donor Center',ssUrlPrefix + 'donating/where/kenosha/index.htm','MetaDescription==Donating blood with BloodCenter of Wisconsin benefits patients in over 50 WI hospitals. BloodCenter collects donations throughout WI, including the donor center in Kenosha.','MetaKeywords==Blood donation, Donating blood, Blood donation Wisconsin, Blood donation WI, Blood donation Kenosha Wisconsin, Blood donation Kenosha WI','NativeFileImageRendition==true','Title==Kenosha Donor Center');
g_navNode_3_2_4=g_navNode_3_2.addNode('48','La Crosse Donor Center',ssUrlPrefix + 'donating/where/lacrosse/index.htm','MetaDescription==Donating blood with BloodCenter of Wisconsin benefits patients in over 50 WI hospitals. BloodCenter collects donations throughout WI, including the donor center in La Crosse.','MetaKeywords==Blood donation, Donating blood, Blood donation Wisconsin, Blood donation WI, Blood donation La Crosse Wisconsin, Blood donation La Crosse WI','NativeFileImageRendition==true','Title==La Crosse Donor Center');
g_navNode_3_2_5=g_navNode_3_2.addNode('49','Manitowoc Donor Center',ssUrlPrefix + 'donating/where/manitowoc/index.htm','MetaDescription==Donating blood with BloodCenter of Wisconsin benefits patients in over 50 WI hospitals. BloodCenter collects donations throughout WI, including the donor center in Manitowoc.','MetaKeywords==Blood donation, Donating blood, Blood donation Wisconsin, Blood donation WI, Blood donation Manitowoc Wisconsin, Blood donation Manitowoc WI','NativeFileImageRendition==true','Title==Manitowoc Donor Center');
g_navNode_3_2_6=g_navNode_3_2.addNode('50','Marshfield Donor Center',ssUrlPrefix + 'donating/where/marshfield/index.htm','MetaDescription==Donating blood with BloodCenter of Wisconsin benefits patients in over 50 WI hospitals. BloodCenter collects donations throughout WI, including the donor center in Marshfield.','MetaKeywords==Blood donation, Donating blood, Blood donation Wisconsin, Blood donation WI, Blood donation Marshfield Wisconsin, Blood donation Marshfield WI','NativeFileImageRendition==true','Title==Marshfield Donor Center');
g_navNode_3_2_7=g_navNode_3_2.addNode('53','Milwaukee Donor Center',ssUrlPrefix + 'donating/where/milwaukee/index.htm','MetaDescription==Donating blood with BloodCenter of Wisconsin benefits patients in over 50 WI hospitals. BloodCenter collects donations throughout WI, including the donor center in Milwaukee.','NativeFileImageRendition==true');
g_navNode_3_2_8=g_navNode_3_2.addNode('54','Racine Donor Center',ssUrlPrefix + 'donating/where/racine/index.htm','NativeFileImageRendition==true','Title==Racine Donor Center');
g_navNode_3_2_9=g_navNode_3_2.addNode('55','Sheboygan Donor Center',ssUrlPrefix + 'donating/where/sheboygan/index.htm','MetaDescription==Donating blood with BloodCenter of Wisconsin benefits patients in over 50 WI hospitals. BloodCenter collects donations throughout WI, including the donor center in Sheboygan.','MetaKeywords==Blood donation, Donating blood, Blood donation Wisconsin, Blood donation WI, Blood donation Sheboygan Wisconsin, Blood donation Sheboygan WI','NativeFileImageRendition==true','Title==Sheboygan Donor Center');
g_navNode_3_2_10=g_navNode_3_2.addNode('56','Waukesha Donor Center',ssUrlPrefix + 'donating/where/waukesha/index.htm','NativeFileImageRendition==true');
g_navNode_3_2_11=g_navNode_3_2.addNode('57','Wauwatosa Donor Center',ssUrlPrefix + 'donating/where/wauwatosa/index.htm','NativeFileImageRendition==true');
g_navNode_3_2_12=g_navNode_3_2.addNode('58','West Bend Donor Center',ssUrlPrefix + 'donating/where/westbend/index.htm','MetaDescription==Donating blood with BloodCenter of Wisconsin benefits patients in over 50 WI hospitals. BloodCenter collects donations throughout WI, including the donor center in West Bend.','MetaKeywords==Blood donation, Donating blood, Blood donation Wisconsin, Blood donation WI, Blood donation West Bend Wisconsin, Blood donation West Bend WI','NativeFileImageRendition==true','Title==West Bend Donor Center');
g_navNode_3_3=g_navNode_3.addNode('210','Hosting A Blood Drive',ssUrlPrefix + 'donating/hosting/index.htm','AltLabel==HOSTING A BLOOD DRIVE','MetaDescription==Where to Donate Blood','MetaKeywords==Donate, Blood Drives, Donor Centers','Title==Hosting a Blood Drive');
g_navNode_3_3_0=g_navNode_3_3.addNode('219','Hosting A Blood Drive Interest Form',ssUrlPrefix + 'donating/hosting/interest/index.htm');
g_navNode_3_3_1=g_navNode_3_3.addNode('220','Business-Sponsored Drive',ssUrlPrefix + 'donating/hosting/businesssponsored/index.htm');
g_navNode_3_3_2=g_navNode_3_3.addNode('221','School-Sponsored Drives',ssUrlPrefix + 'donating/hosting/schoolsponsored/index.htm','NativeFileImageRendition==true');
g_navNode_3_3_3=g_navNode_3_3.addNode('222','Community-Sponsored Drives',ssUrlPrefix + 'donating/hosting/communitysponsored/index.htm');
g_navNode_3_3_4=g_navNode_3_3.addNode('223','FAQs',ssUrlPrefix + 'donating/hosting/faq/index.htm');
g_navNode_3_3_5=g_navNode_3_3.addNode('224','Planning Timeline',ssUrlPrefix + 'donating/hosting/planning/index.htm');
g_navNode_3_3_6=g_navNode_3_3.addNode('225','Tools for Drive Coordinators',ssUrlPrefix + 'donating/hosting/tools/index.htm');
g_navNode_3_4=g_navNode_3.addNode('211','Make An Appointment Online',ssUrlPrefix + 'donating/Make An Appointment Online/index.htm','AltLabel==MAKE AN\x7c APPOINTMENT\x7c ONLINE');
g_navNode_3_5=g_navNode_3.addNode('212','Milestone Donor \x26 Volunteer Recognition',ssUrlPrefix + 'donating/Milestone Donor \x26 Volunteer Recognition/index.htm','AltLabel==MILESTONE DONOR\x7c \x26 VOLUNTEER\x7c RECOGNITION','Title==Milestone Donor \x26 Volunteer Recognition');
g_navNode_4=g_navNode_Root.addNode('156','Marrow, Organ \x26 Tissue Donation',ssUrlPrefix + 'OrganTissueDonation/index.htm','AltLabel==MARROW, ORGAN \x26\x7cTISSUE DONATION');
g_navNode_4_0=g_navNode_4.addNode('158','Overview',ssUrlPrefix + 'OrganTissueDonation/Overview/index.htm','MetaKeywords==organ transplant, heart transplant, lung transplant, liver transplant, kidney transplant, pancreas transplant, clinical trials, support groups, transplant diaries, Wisconsin donro Netowrk, Transplant Center program, tissue transplant, tissue donor, organ donor, Wisconsin Tissue Bank');
g_navNode_4_1=g_navNode_4.addNode('228','Marrow Donor Program',ssUrlPrefix + 'OrganTissueDonation/MarrowDonorProgram/index.htm','AltLabel==MARROW DONOR \x7cPROGRAM','MetaKeywords==Bone Marrow donation, marrow donors, Be the match registry, bone marrow transplant');
g_navNode_4_1_0=g_navNode_4_1.addNode('231','Why Register?',ssUrlPrefix + 'OrganTissueDonation/MarrowDonorProgram/WhyRegister/index.htm');
g_navNode_4_1_1=g_navNode_4_1.addNode('235','Steps to Register',ssUrlPrefix + 'OrganTissueDonation/MarrowDonorProgram/StepstoRegister/index.htm');
g_navNode_4_1_2=g_navNode_4_1.addNode('236','Steps to Donating Marrow',ssUrlPrefix + 'OrganTissueDonation/MarrowDonorProgram/StepstoDonatingMarrow/index.htm');
g_navNode_4_1_3=g_navNode_4_1.addNode('237','Why Are More People of Color Needed?',ssUrlPrefix + 'OrganTissueDonation/MarrowDonorProgram/WhyAreMorePeopleofColorNeeded/index.htm');
g_navNode_4_3=g_navNode_4.addNode('239','WisconsinTissueBank',ssUrlPrefix + 'OrganTissueDonation/WisconsinTissueBank/index.htm','AltLabel==WISCONSIN\x7cTISSUE BANK');
g_navNode_4_3_0=g_navNode_4_3.addNode('241','For Donor Families',ssUrlPrefix + 'OrganTissueDonation/WisconsinTissueBank/ForDonorFamilies/index.htm');
g_navNode_4_3_1=g_navNode_4_3.addNode('245','-Your Questions Answered',ssUrlPrefix + 'OrganTissueDonation/WisconsinTissueBank/-YourQuestionsAnswered/index.htm');
g_navNode_4_3_2=g_navNode_4_3.addNode('252','-Individual and Family Resources',ssUrlPrefix + 'OrganTissueDonation/WisconsinTissueBank/-IndividualandFamilyResources/index.htm');
g_navNode_4_3_3=g_navNode_4_3.addNode('253','Tissue Services',ssUrlPrefix + 'OrganTissueDonation/WisconsinTissueBank/TissueServices/index.htm');
g_navNode_4_3_4=g_navNode_4_3.addNode('266','-Who Benefits?',ssUrlPrefix + 'OrganTissueDonation/WisconsinTissueBank/-WhoBenefits/index.htm');
g_navNode_4_3_5=g_navNode_4_3.addNode('268','Learn About Tissue Donation',ssUrlPrefix + 'OrganTissueDonation/WisconsinTissueBank/LearnAboutTissueDonation/index.htm');
g_navNode_4_3_7=g_navNode_4_3.addNode('279','Links and Resources',ssUrlPrefix + 'OrganTissueDonation/WisconsinTissueBank/LinksandResources/index.htm');
g_navNode_4_3_8=g_navNode_4_3.addNode('281','Contact Tissue Bank',ssUrlPrefix + 'OrganTissueDonation/WisconsinTissueBank/ContactTissueBank/index.htm');
g_navNode_5=g_navNode_Root.addNode('6','Blood Products \x26 Medical Services',ssUrlPrefix + 'bloodproducts/index.htm','AltLabel==BLOOD PRODUCTS \x7c\x26 MEDICAL SERVICES','Title==Blood Products \x26 Medical Services');
g_navNode_5_0=g_navNode_5.addNode('21','Overview',ssUrlPrefix + 'bloodproducts/overview/index.htm','AltLabel==OVERVIEW');
g_navNode_5_1=g_navNode_5.addNode('22','Marrow Donor Program',ssUrlPrefix + 'bloodproducts/marrowdonor/index.htm','AltLabel==MARROW \x7cDONOR PROGRAM','MetaKeywords==Bone Marrow donation, marrow donors, Be the match registry, bone marrow transplant');
g_navNode_5_1_0=g_navNode_5_1.addNode('301','Why Register?',ssUrlPrefix + 'bloodproducts/marrowdonor/WhyRegister/index.htm');
g_navNode_5_1_1=g_navNode_5_1.addNode('302','Steps to Register',ssUrlPrefix + 'bloodproducts/marrowdonor/StepstoRegister/index.htm');
g_navNode_5_1_2=g_navNode_5_1.addNode('303','Steps to Donating Marrow',ssUrlPrefix + 'bloodproducts/marrowdonor/StepstoDonatingMarrow/index.htm');
g_navNode_5_1_3=g_navNode_5_1.addNode('304','Why Are More People of Color Needed?',ssUrlPrefix + 'bloodproducts/marrowdonor/WhyAreMorePeopleofColorNeeded/index.htm');
g_navNode_5_2=g_navNode_5.addNode('23','Blood Products\x3a Info \x26 Ordering',ssUrlPrefix + 'bloodproducts/info/index.htm','AltLabel==BLOOD PRODUCTS\x3a \x7cINFO \x26 ORDERING');
g_navNode_5_2_0=g_navNode_5_2.addNode('24','Available Blood Products',ssUrlPrefix + 'bloodproducts/info/products/index.htm');
g_navNode_5_2_1=g_navNode_5_2.addNode('25','Obtaining Forms',ssUrlPrefix + 'bloodproducts/info/forms/index.htm');
g_navNode_5_2_2=g_navNode_5_2.addNode('26','Blood Safety',ssUrlPrefix + 'bloodproducts/info/safety/index.htm');
g_navNode_5_3=g_navNode_5.addNode('27','Clotting Factors \x26 Derivatives',ssUrlPrefix + 'bloodproducts/clotting/index.htm','AltLabel==CLOTTING FACTORS \x7c\x26 DERIVATIVES');
g_navNode_5_4=g_navNode_5.addNode('69','Physician Services',ssUrlPrefix + 'bloodproducts/education/index.htm','AltLabel==PHYSICIAN\x7c SERVICES');
g_navNode_5_4_0=g_navNode_5_4.addNode('80','Medical Staff Profiles',ssUrlPrefix + 'bloodproducts/education/staff/index.htm','NativeFileImageRendition==false','PortraitImageRendition==false','secondaryUrlVariableField==EditableWebpage');
g_navNode_5_4_1=g_navNode_5_4.addNode('135','Medical Education',ssUrlPrefix + 'bloodproducts/education/education/index.htm');
g_navNode_5_4_2=g_navNode_5_4.addNode('136','Sickle Cell Disease',ssUrlPrefix + 'bloodproducts/education/sicklecell/index.htm');
g_navNode_5_4_3=g_navNode_5_4.addNode('137','Current Topic - TRALI',ssUrlPrefix + 'bloodproducts/education/trali/index.htm');
g_navNode_5_4_4=g_navNode_5_4.addNode('138','Medical Advisory Committee',ssUrlPrefix + 'bloodproducts/education/committee/index.htm');
g_navNode_5_5=g_navNode_5.addNode('81','Therapeutic Services',ssUrlPrefix + 'bloodproducts/therapeutic/index.htm','AltLabel==THERAPEUTIC\x7c SERVICES');
g_navNode_5_5_0=g_navNode_5_5.addNode('139','Therapeutic Apheresis',ssUrlPrefix + 'bloodproducts/therapeutic/apheresis/index.htm');
g_navNode_5_5_1=g_navNode_5_5.addNode('140','Selected Platelet Products',ssUrlPrefix + 'bloodproducts/therapeutic/platelet/index.htm');
g_navNode_5_5_2=g_navNode_5_5.addNode('141','Granulocyte Transfusions',ssUrlPrefix + 'bloodproducts/therapeutic/granulocyte/index.htm');
g_navNode_5_5_3=g_navNode_5_5.addNode('142','Stem Cells and Lymphocytes',ssUrlPrefix + 'bloodproducts/therapeutic/stemcells/index.htm');
g_navNode_5_6=g_navNode_5.addNode('82','Autologous \x26 Directed Donations',ssUrlPrefix + 'bloodproducts/autologous/index.htm','AltLabel==AUTOLOGOUS \x26\x7c DIRECTED DONATIONS');
g_navNode_5_7=g_navNode_5.addNode('84','Comprehensive Center for Bleeding Disorders',ssUrlPrefix + 'bloodproducts/ccbd/index.htm','AltLabel==COMPREHENSIVE CENTER\x7c FOR BLEEDING DISORDERS');
g_navNode_5_7_0=g_navNode_5_7.addNode('145','Staff Profiles',ssUrlPrefix + 'bloodproducts/ccbd/staff/index.htm','NativeFileImageRendition==true','PortraitImageRendition==false');
g_navNode_5_7_1=g_navNode_5_7.addNode('146','Educational Services',ssUrlPrefix + 'bloodproducts/ccbd/education/index.htm');
g_navNode_5_7_2=g_navNode_5_7.addNode('147','Directions',ssUrlPrefix + 'bloodproducts/ccbd/directions/index.htm','ImageRendition==Native File','NativeFileImageRendition==true');
g_navNode_5_7_3=g_navNode_5_7.addNode('148','CCBD Newsletter',ssUrlPrefix + 'bloodproducts/ccbd/newsletter/index.htm');
g_navNode_6=g_navNode_Root.addNode('7','Laboratory Testing',ssUrlPrefix + 'lab/index.htm','AltLabel==LABORATORY \x7cTESTING','Title==Laboratory Testing');
g_navNode_6_0=g_navNode_6.addNode('60','Overview',ssUrlPrefix + 'lab/overview/index.htm','AltLabel==OVERVIEW','MetaDescription==Reference testing in the areas of platelet antibody, special coagulation, HLA typing, engraftment, bcr-abl, VWD and ADAMTS13.','MetaKeywords==platelet antibody special coagulation HLA engraftment, von Willebrand, ADAMTS13, Stem Cell Transplantation, Molecular Oncology, Solid Organ Transplantation, Maternal Fetal Medicine, Transfusion Medicine, Hemostasis, Thrombosis, \x26 Platelet Immune Disorders ','Title==Diagnostic Laboratories at BloodCenter of Wisconsin');
g_navNode_6_0_0=g_navNode_6_0.addNode('70','Hemostasis',ssUrlPrefix + 'lab/overview/Hemostasis/index.htm','MetaDescription==Hemostasis laboratory at BloodCenter of Wisconsin provides comprehensive diagnostic testing for bleeding, thrombotic, fibrinolytic and platelet function disorders ','MetaKeywords==VWF,propeptide,von Willebrand,hemostasis, laboratory, ADAMTS13, comprehensive diagnostic testing for bleeding, thrombotic, BloodCenter of Wisconsin, Diagnostic Laboratories, fibrinolytic, platelet function disorders','Title==BloodCenter of Wisconsin - Hemostasis Laboratory at Diagnostic Laboratories');
g_navNode_6_0_1=g_navNode_6_0.addNode('71','Histocompatibility',ssUrlPrefix + 'lab/overview/HLA/index.htm','MetaDescription==The Histocompatibility Laboratory of BloodCenter of Wisconsin provides testing for HLA Class I and Class II to help identify the best available donor for a patient in need of a transplant.','MetaKeywords==bone marrow transplant, stem cell transplant, solid organ transplant, hla, histocompatibility, thomas ellis','Title==BloodCenter of Wisconsin - Histocompatibility Laboratory');
g_navNode_6_0_2=g_navNode_6_0.addNode('72','Immunohematology',ssUrlPrefix + 'lab/overview/IRL/index.htm','MetaDescription==The Immunohematology Reference Laboratory of BloodCenter of Wisconsin has provided compatible blood to patients in Wisconsin and around the world since 1947','MetaKeywords==hemolysis, drug induced hemolytic anemias, drug dependent red cell antibodies, super coombs, dat negative autoimmune, greg denomme, jerome gottschall','Title==BloodCenter of Wisconsin - Immunohematology Reference Laboratory');
g_navNode_6_0_3=g_navNode_6_0.addNode('73','Molecular Diagnostics',ssUrlPrefix + 'lab/overview/MDL/index.htm','AltLabel==Molecular \x7cDiagnostics','MetaDescription==Molecular Diagnostics Laboratory specializes in genetic disease testing, engraftment assestment of bone marrow transplant recipients, red cell antigen genotyping, and quantitative detection of bcr-abl.','MetaKeywords==CEBPA bcr abl engraftment chimerism genetic JAK2, daniel bellissimo ','Title==BloodCenter of Wisconsin - Molecular Diagnostics Laboratory');
g_navNode_6_0_4=g_navNode_6_0.addNode('74','Platelet \x26 Neutrophil Immunology',ssUrlPrefix + 'lab/overview/PNIL/index.htm','AltLabel==Platelet \x26 Neutrophil \x7cImmunology','MetaDescription==Platelet \x26 Neutrophil Immunology Laboratory \x28PNIL\x29 at the Diagnostic Laboratories at BloodCenter of Wisconsin is a global resource for diagnosing immune disorders','MetaKeywords==SRA, Serotonin Release Assay, Richard Aster, Heparin Induced Thrombocytopenia,  PF4 ELISA, HIT, Platelet Neutrophil Immunology, BloodCenter of Wisconsin, Diagnostic Laboratories','Title==BloodCenter of Wisconsin - Platelet Neutrophil Immunology Laboratory');
g_navNode_6_0_5=g_navNode_6_0.addNode('75','Product Development',ssUrlPrefix + 'lab/overview/ProdDev/index.htm','MetaDescription==The Product Development laboratory at BloodCenter of Wisconsin develops, validates and implements new clinical assays.','MetaKeywords==TTP ADAMTS13 CEBPA Product Development Laboratory','Title==BloodCenter of Wisconsin - Product Development Laboratory');
g_navNode_6_0_12=g_navNode_6_0.addNode('254','Applied Research',ssUrlPrefix + 'lab/overview/ARL/index.htm');
g_navNode_6_1=g_navNode_6.addNode('61','What\'s New',ssUrlPrefix + 'lab/new/index.htm','AltLabel==WHAT\\x27S NEW','MetaDescription==Diagnostic Laboratories at BloodCenter of Wisconsin continually offer new and enhanced assays.','MetaKeywords==Diagnostic Testing, Maternal Fetal Medicine, Stem Cell Transplantation, Solid Organ Transplantation, Molecular Oncology, Transfusion Medicine, Hemostasis, Thrombosis \x26 Platelet immune disorders');
g_navNode_6_1_0=g_navNode_6_1.addNode('270','PNH - Granulocytes',ssUrlPrefix + 'lab/new/PNHGranulocytes/PNH - Granulocytes');
g_navNode_6_1_1=g_navNode_6_1.addNode('271','CEBPA Mutation Analysis',ssUrlPrefix + 'lab/new/CEBPA/index.htm');
g_navNode_6_1_2=g_navNode_6_1.addNode('272','Antithrombin Cambridge II',ssUrlPrefix + 'lab/new/AntithrombinCambridgeII/index.htm');
g_navNode_6_2=g_navNode_6.addNode('63','Staff Profiles',ssUrlPrefix + 'lab/staff/index.htm','AltLabel==STAFF PROFILES','MetaDescription==Medical, Scientific and Leadership Staff at the Diagnostic Laboratories at BloodCenter of Wisconsin ','MetaKeywords==Monika de Arruda Indig, Jerry Gottschall, Thomas Ellis, Gregory Denomme, Daniel Bellissimo, Roger Klein, Janice McFarland, Brad Pietz, Ken Friedman, Applied Research, Clinical and Contract Research, Diagnostic Laboratories, Hemostasis Reference, Histocompatibility, Immunohematology, Molecular Diagnostics, Molecular Oncology, Platelet and Neutrophil Immunology, Product Development Laboratory','Title==BloodCenter of Wisconsin - Medical, Scientific and Leadership Staff at the Diagnostic Laboratories','secondaryUrlVariableField==EditableWebpage');
g_navNode_6_3=g_navNode_6.addNode('64','Clinical \x26 Contract Research',ssUrlPrefix + 'lab/ccr/index.htm','AltLabel==CLINICAL \x26 \x7cCONTRACT RESEARCH','MetaDescription==Clinical and Contract Research offers assay development and validation services for contract research organizations pharmaceutical, biotech and medical device companies.','MetaKeywords==custom assay development validation clinical contract research trials monika de arruda indig','Title==BloodCenter of Wisconsin - Clinical and Contract Research');
g_navNode_6_4=g_navNode_6.addNode('62','Catalog',ssUrlPrefix + 'lab/catalog/index.htm','AltLabel==CATALOG','MetaDescription==Diagnostic Laboratories at BloodCenter of Wisconsin Test Catalog ','MetaKeywords==Diagnostic Testing, Catalog, online ordering, Molecular Hematology, oncology');
g_navNode_6_4_0=g_navNode_6_4.addNode('123','Test Descriptions',ssUrlPrefix + 'lab/catalog/testdescriptions/index.htm','MetaDescription==Test Descriptions detailing assays available at Diagnostic Laboratories at BloodCenter of Wisconsin.','MetaKeywords==Diagnostic Laboratories Test Descriptions ADAMTS13 AML Mutation Panel CEBPA RhD Zygosity BCR-ABL');
g_navNode_6_4_1=g_navNode_6_4.addNode('126','Policies',ssUrlPrefix + 'lab/catalog/policies/index.htm','MetaDescription==Policies of the Diagnostic Laboratories at BloodCenter of Wisconsin','MetaKeywords==Diagnostic Laboratories BloodCenter of Wisconsin Billing, STAT testing, Test Cancellation, Unacceptable Specimens, Requisitions, Results and Reports, Shipping Requirements, Billing, Consultation, CPT Codes ','Title==BloodCenter of Wisconsin - Diagnostic Laboratories\\x27 Policies');
g_navNode_6_4_2=g_navNode_6_4.addNode('292','Request a Catalog',ssUrlPrefix + 'lab/catalog/request/index.htm');
g_navNode_6_5=g_navNode_6.addNode('65','Online Ordering',ssUrlPrefix + 'lab/onlineordering/index.htm','AltLabel==ONLINE ORDERING','MetaDescription==Labtest is Diagnostic Laboratories at BloodCenter of Wisconsin\\x27s online ordering and resulting tool.','MetaKeywords==Labtest, online ordering and resulting, online ordering, electronic connectivity, BloodCenter of Wisconsin, Diagnostic Laboratories');
g_navNode_6_5_0=g_navNode_6_5.addNode('280','Labtest Demo',ssUrlPrefix + 'lab/onlineordering/LabtestDemo/index.htm');
g_navNode_6_5_1=g_navNode_6_5.addNode('297','Online Ordering Request',ssUrlPrefix + 'lab/onlineordering/OnlineOrderingRequest/index.htm');
g_navNode_6_6=g_navNode_6.addNode('67','Shipping \x26 Requisitions',ssUrlPrefix + 'lab/shipping/index.htm','AltLabel==SHIPPING \x26 \x7cREQUISITIONS','MetaDescription==Shipping and Sample Processing Instructions Diagnostic Laboratories BloodCenter of Wisconsin','MetaKeywords==Shipping Instructions Diagnostic Laboratories BloodCenter of Wisconsin Frozen Samples Refrigerated Date of Ship Shipping Address Unacceptable Specimens');
g_navNode_6_6_0=g_navNode_6_6.addNode('125','Requisitions',ssUrlPrefix + 'lab/shipping/requisitions/index.htm','MetaDescription==Requisitions and ordering information for Diagnostic Laboratories at BloodCenter of Wisconsin.','MetaKeywords==Diagnostic Laboratories BloodCenter of Wisconsin requisitions Hemostasis Histocompatibility, platelet neutrophil \x26 immunology, molecular diagnostics, molecular oncology, immunohematology reference, infectious disease');
g_navNode_6_6_1=g_navNode_6_6.addNode('127','Hemostasis Samples',ssUrlPrefix + 'lab/shipping/HemostasisSamples/index.htm');
g_navNode_6_6_3=g_navNode_6_6.addNode('293','HLA Samples',ssUrlPrefix + 'lab/shipping/HLASamples/index.htm');
g_navNode_6_7=g_navNode_6.addNode('66','Licenses',ssUrlPrefix + 'lab/licenses/index.htm','AltLabel==LICENSES','MetaDescription==Accreditations and licensure for laboratory testing at BloodCenter of Wisconsin','MetaKeywords==aabb, clia, laboratory testing license, accreditation, laboratory');
g_navNode_6_8=g_navNode_6.addNode('68','Contact Us',ssUrlPrefix + 'lab/contact/index.htm','AltLabel==CONTACT US','MetaDescription==Laboratory contact information for Diagnostic Laboratories at BloodCenter of Wisconsin.','MetaKeywords==Diagnostic Laboratories Administration Client Services Sales Marketing Hemostasis Reference Histocompatibility Molecular Diagnostics Immunohematology Platelet Neutrophil Immunology Applied Research Laboratory');
g_navNode_6_8_0=g_navNode_6_8.addNode('132','DL Media Kit',ssUrlPrefix + 'lab/contact/mediakit/index.htm');
g_navNode_7=g_navNode_Root.addNode('8','Research',ssUrlPrefix + 'research/index.htm','AltLabel==RESEARCH','SiteMapNewColumn==TRUE','Title==Research');
g_navNode_7_0=g_navNode_7.addNode('87','Overview',ssUrlPrefix + 'research/overview/index.htm','AltLabel==OVERVIEW','MetaDescription==Overview of Blood Research Institute','MetaKeywords==Thrombosis, Hemostasis and Vascular Biology,Immunobiology,Transfusion Medicine,Stem Cell Biology/Hematopoiesis ','Title==Research Overview');
g_navNode_7_1=g_navNode_7.addNode('88','Investigators',ssUrlPrefix + 'research/investigators/index.htm','AltLabel==INVESTIGATORS','MetaDescription==BloodCenter investigators key areas of research focus','MetaKeywords==Transfusion Medicine, Immunobiology, Immunology, Thrombosis, Hemostasis, Vascular Biology,Thrombocytopenia, ABH antigens  ','Title==Investigators','secondaryUrlVariableField==EditableWebpage');
g_navNode_7_1_0=g_navNode_7_1.addNode('161','Richard H. Aster, M.D.',ssUrlPrefix + 'research/investigators/aster/index.htm','AltLabel==Richard H. Aster, M.D.','MetaDescription==Investigator page for Richard H. Aster, M.D.','MetaKeywords==Aster, Investigator, Transfusion Medicine, Platelet Immunology Group, drug-immune cytopenias, neonatal alloimmune thrombocytopenia, neutrophils','PortraitImageRendition==true','Title==Richard H. Aster, M.D.');
g_navNode_7_1_1=g_navNode_7_1.addNode('162','Bonnie N. Dittel, Ph.D.',ssUrlPrefix + 'research/investigators/dittel/index.htm','MetaDescription==Investigator page for Bonnie N. Dittel, Ph.D.','MetaKeywords==Immunobiology, Immunology, CNS Inflammation, EAE and multiple sclerosis MS, Cannabinoid System, Memory T cells in Influenza Infection','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Bonnie N. Dittel, Ph.D.');
g_navNode_7_1_2=g_navNode_7_1.addNode('163','Joan Cox Gill, M.D.',ssUrlPrefix + 'research/investigators/coxgill/index.htm','MetaDescription==Investigator page for Joan Cox Gill, M.D. ','MetaKeywords==Comprehensive Center for Bleeding Disorders, Hemophilia A and B, HCV-infected hemophilic,Thrombosis, Hemostasis, Vascular Biology, Immunobiology, Immunology   ','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Joan Cox Gill, M.D. ');
g_navNode_7_1_3=g_navNode_7_1.addNode('164','Jack Gorski, Ph.D.',ssUrlPrefix + 'research/investigators/gorski/index.htm','MetaDescription==Investigator page for Jack Gorski, Ph.D.','MetaKeywords==Immunobiology, Immunology, MHC class II, repertoire, epitopes, antigenic peptides, Influenza','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Jack Gorski, Ph.D.');
g_navNode_7_1_4=g_navNode_7_1.addNode('165','Cheryl Hillery, M.D.',ssUrlPrefix + 'research/investigators/hillery/index.htm','MetaDescription==Investigator page for Cheryl Hillery, M.D.','MetaKeywords==hillery, investigator, sickle cell disease, thrombospondin, laminin, vaso-occlusion','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Cheryl Hillery, M.D.');
g_navNode_7_1_5=g_navNode_7_1.addNode('166','Subramaniam Malarkannan, Ph.D.',ssUrlPrefix + 'research/investigators/malarkannan/index.htm','MetaDescription==Investigator page for Subramaniam Malarkannan, Ph.D.','MetaKeywords==Immunobiology, Immunology, Natural Killer Cells \x28NK\x29,NKG2D Receptor,Graft-vs-Host Disease \x28GVHD\x29, influenza responses','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Subramaniam Malarkannan, Ph.D.');
g_navNode_7_1_6=g_navNode_7_1.addNode('167','Laurent Malherbe, Ph.D.',ssUrlPrefix + 'research/investigators/malherbe/index.htm','MetaDescription==Investigator page for Laurent Malherbe, Ph.D.','MetaKeywords==malherbe, investigator, peptide-MHC ClassII, adjuvant, vaccines, immunotherapy, T cell, B cell, T helper','PortraitImageRendition==true','Title==Laurent Malherbe, Ph.D.');
g_navNode_7_1_7=g_navNode_7_1.addNode('168','Alan E. Mast, M.D., Ph.D.',ssUrlPrefix + 'research/investigators/mast/index.htm','MetaDescription==Investigator page for Alan E. Mast, M.D., Ph.D.','MetaKeywords==mast, investigator, Tissue Factor Pathway Inhibitor \x28TFPI\x29, iron metabolism, hemostasis, vascular biology','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Alan E. Mast, M.D., Ph.D.','WordImageRendition==false');
g_navNode_7_1_8=g_navNode_7_1.addNode('169','Robert R. Montgomery, M.D.',ssUrlPrefix + 'research/investigators/montgomery/index.htm','MetaDescription==Investigator page for Robert R. Montgomery, M.D','MetaKeywords==Thrombosis, Hemostasis, Vascular Biology, Transfusion Medicine, vWF protein,Bernard Soulier Syndrome \x28BSS\x29,coagulation Factor VIII ','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Robert R. Montgomery, M.D');
g_navNode_7_1_9=g_navNode_7_1.addNode('170','Michael W. Mosesson, M.D.',ssUrlPrefix + 'research/investigators/mosesson/index.htm','MetaDescription==Investigator page for Michael W. Mosesson, M.D.','MetaKeywords==Thrombosis, Hemostasis and Vascular Biology,Fibrin Anti-Thrombin I Activities ,cellular and matrix interactions, fibrinolysis, and wound healing ','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Michael W. Mosesson, M.D.');
g_navNode_7_1_10=g_navNode_7_1.addNode('171','Debra K. Newman, Ph.D.',ssUrlPrefix + 'research/investigators/dnewman/index.htm','MetaDescription==Investigator page for Debra K. Newman, Ph.D.','MetaKeywords==Thrombosis, Hemostasis and Vascular Biology, Immunobiology, Immunology, Platelet Endothelial Cell Adhesion Molecule \x28PECAM\x29-1,platelet responses  ','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Debra K. Newman, Ph.D.');
g_navNode_7_1_11=g_navNode_7_1.addNode('172','Peter J. Newman, Ph.D.',ssUrlPrefix + 'research/investigators/pnewman/index.htm','MetaDescription==Investigator page for Peter J. Newman, Ph.D.','MetaKeywords==Thrombosis, Hemostasis and Vascular Biology,stimulatory and inhibitory receptors,  human and murine platelets,structure and function of PECAM-1   ','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Peter J. Newman, Ph.D.','WordImageRendition==false');
g_navNode_7_1_12=g_navNode_7_1.addNode('173','Demin Wang, Ph.D.',ssUrlPrefix + 'research/investigators/wang/index.htm','MetaDescription==Investigator page for Demin Wang, Ph.D.','MetaKeywords==Immunobiology, Immunology, Stem Cell Biology,Hematopoiesis, Cytokine receptor signaling, B cell receptor signaling','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Demin Wang, Ph.D.');
g_navNode_7_1_13=g_navNode_7_1.addNode('174','Hartmut Weiler, Ph.D.',ssUrlPrefix + 'research/investigators/weiler/index.htm','MetaDescription==Investigator page for Hartmut Weiler, Ph.D.','MetaKeywords==Thrombosis, Hemostasis, Vascular Biology, Transfusion Medicine, Immunobiology, Immunology, Stem Cell Biology, Hematopoiesis,Stem Cell Biology, Hematopoiesis','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Hartmut Weiler, Ph.D.');
g_navNode_7_1_14=g_navNode_7_1.addNode('175','Renren Wen, Ph.D.',ssUrlPrefix + 'research/investigators/wen/index.htm','MetaDescription==Investigator page for Renren Wen, Ph.D.','MetaKeywords==Immunobiology, Immunology, Stem Cell Biology, Hematopoiesis,T cell receptor \x28TCR\x29, TCR signal transduction','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Renren Wen, Ph.D.');
g_navNode_7_1_15=g_navNode_7_1.addNode('176','Gilbert C. White, II, M.D.',ssUrlPrefix + 'research/investigators/white/index.htm','MetaDescription==Investigator page for Gilbert C. White, II, M.D.','MetaKeywords==Thrombosis, Hemostasis, Vascular Biology, hemostatic responses of blood platelets, rap1b, platelet function and hemostasis ','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Gilbert C. White, II, M.D.');
g_navNode_7_1_16=g_navNode_7_1.addNode('177','Magdalena Chrazanowska-Wodnicka, Ph.D.',ssUrlPrefix + 'research/investigators/chrzanowska-wodnicka/index.htm','MetaDescription==Investigator page for Magdalena Chrzanowska-Wodnicka, Ph.D.','MetaKeywords==wodnicka, investigator, Rap, angiogenesis, vasculogenesis, VEGF, MAPK signaling, Rap1b','PortraitImageRendition==true','Title==Magdalena Chrzanowska-Wodnicka, Ph.D.');
g_navNode_7_2=g_navNode_7.addNode('89','Blood Research Institute',ssUrlPrefix + 'research/bri/index.htm','AltLabel==BLOOD RESEARCH\x7cINSTITUTE','MetaDescription==Blood Research Institue Overview','MetaKeywords==Blood Research Institute,BRI','NativeFileImageRendition==false','PortraitImageRendition==false','ThumbnailImageRendition==false','Title==Blood Research Institue','WordImageRendition==true');
g_navNode_7_2_0=g_navNode_7_2.addNode('179','News',ssUrlPrefix + 'research/bri/news/index.htm','MetaDescription==Blood Research Institute News and Events','MetaKeywords==BRI, NIH Funding,  Thrombosis, Hemostasis and Vascular Biology, Immunobiology, Immonology, Transfusion Medicine, Stem Cell Biology, Hematopoiesis ','Title==Research News and Events');
g_navNode_7_2_1=g_navNode_7_2.addNode('180','Directions',ssUrlPrefix + 'research/bri/directions/index.htm','MetaDescription==Directions to the Blood Research Institute','MetaKeywords==Blood Research Institute, BRI','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Directions to the Blood Research Institute','WordImageRendition==false');
g_navNode_7_2_2=g_navNode_7_2.addNode('181','Vascular Biology Program',ssUrlPrefix + 'research/bri/vascularbiology/index.htm','MetaDescription==Vascular Cell and Molecular Biology Program Faculty and Research Interests','MetaKeywords==Vascular Cell and Molecular Biology Program, Program Faculty, Research Interests, Cardiovascular Center','Title==Vascular Cell and Molecular Biology Program');
g_navNode_7_2_3=g_navNode_7_2.addNode('182','Immunology Program',ssUrlPrefix + 'research/bri/immunology/index.htm','MetaDescription==Immunology Program Overview, Seminar Series, Investigators, and MCW Collegues','MetaKeywords==Immunology, Immunobiology, HLA typing, Transfusions, Bone marrow transplantation, T cell, HLA, Antigens, Investigators, Seminar Series, MCW Collegues','Title==Immunology Program');
g_navNode_7_2_4=g_navNode_7_2.addNode('78','Center for Human Immunology',ssUrlPrefix + 'research/bri/CenterforHumanImmunology/index.htm');
g_navNode_7_2_5=g_navNode_7_2.addNode('144','BRI Symposium',ssUrlPrefix + 'research/bri/BRISymposium/index.htm');
g_navNode_7_3=g_navNode_7.addNode('90','Core Lab Services',ssUrlPrefix + 'research/corelab/index.htm','AltLabel==CORE LAB\x7cSERVICES','MetaDescription==Core Laboratory Services overview with photos of Core Lab technologists','MetaKeywords==Core Laboratory Services, Biophysics, Flow Cytometry, Hybridoma, Molecular Biology, Protein Chemistry, Viral Vector, Imaging, Histology, Technologists','Title==Core Laboratory Services');
g_navNode_7_3_0=g_navNode_7_3.addNode('183','Biophysics',ssUrlPrefix + 'research/corelab/biophysics/index.htm','MetaDescription==Biophysics Core overview, instrumentation and application, scheduling and sample preparation','MetaKeywords==Biophysics Core Overview, Personnel, Instrumentation, Biomolecular Interaction Analysis, CytoFluor, Spectrofluorometer, Scheduling, Sample Preparation','Title==Biophysics Core');
g_navNode_7_3_1=g_navNode_7_3.addNode('184','Flow Cytometry',ssUrlPrefix + 'research/corelab/flowcytometry/index.htm','MetaDescription==Flow Cytometry Core overview, personnel, instrumentation, scheduling and sample preparation','MetaKeywords==Flow Cytometry Core Overview, Personnel, Instrumentation, Flow Cytometer, Cytometer Systems, Magnetic Cell Separation, Scheduling, Sample Preparation','Title==Flow Cytometry Core');
g_navNode_7_3_2=g_navNode_7_3.addNode('185','Hybridoma',ssUrlPrefix + 'research/corelab/hyridoma/index.htm','MetaDescription==Hybridoma Core Lab overview, personnel, policies and services','MetaKeywords==Hybridoma Core Overview, Personnel, Monoclonal Antibodies, Tissue Culture, Fusions','Title==Hybridoma Core Lab');
g_navNode_7_3_3=g_navNode_7_3.addNode('186','Molecular Biology',ssUrlPrefix + 'research/corelab/molecularbiology/index.htm','MetaDescription==Molecular Biology Core overview, personnel, instrumentation and application, DNA sequencing services and quantitative \x28real time\x29 PCR policies','MetaKeywords==Molecular Biology Core Overview, Personnel, Instrumentation, Genetic Analyzer,  iCycler, Real-Time PCR , Bio-Plex Array Reader,  Microplate Platform, DNA Sequencing Services','Title==Molecular Biology Core');
g_navNode_7_3_4=g_navNode_7_3.addNode('187','Protein Chemistry',ssUrlPrefix + 'research/corelab/proteinchemistry/index.htm','MetaDescription==Protein Chemistry Core overview, personnel, instrumentation, applications, core policies and services','MetaKeywords==Protein Chemistry Core Overview, Personnel, Instrumentation, Peptide synthesis,  Modification, Purification, Policies, Services','Title==Protein Chemistry Core');
g_navNode_7_3_5=g_navNode_7_3.addNode('188','Viral Vector',ssUrlPrefix + 'research/corelab/viralvector/index.htm','MetaDescription==Viral Vector Core overview, personnel, instrumentation, applications, policies and services','MetaKeywords==Viral Vector Core Overview, Personnel, Instrumentation, Lentiviral Vectors,  Adenoviral Vectors, Policies, Services','Title==Viral Vector Core ');
g_navNode_7_3_6=g_navNode_7_3.addNode('190','Imaging',ssUrlPrefix + 'research/corelab/imaging/index.htm','MetaDescription==Imaging Core overview, personnel, instrumentation, applications, core policies and services','MetaKeywords==Imaging Core Overview, Personnel, Instrumentation, Dissecting scope,  Inverted, Upright, Zeiss AxioScope, Metamorph, Policies, Services','Title==Imaging Core');
g_navNode_7_3_7=g_navNode_7_3.addNode('191','Histology',ssUrlPrefix + 'research/corelab/histology/index.htm','MetaDescription==Histology Core overview, personnel, instrumenation, applications, policies and services','MetaKeywords==Histology Core Overview, Personnel, Instrumentation, Tissue Processor,  Automated Stainer, Cryostat, Staining, Policies, Services','Title==Histology Core');
g_navNode_7_4=g_navNode_7.addNode('91','Office of Research Administration',ssUrlPrefix + 'research/adminoffice/index.htm','AltLabel==OFFICE OF RESEARCH\x7cADMINISTRATION','MetaDescription==Research Administration','MetaKeywords==general inquiries, grants management, irb, exchange visitor, technology transfer, training grant','Title==Office of Research Administration');
g_navNode_7_4_0=g_navNode_7_4.addNode('192','Institutional Review Board',ssUrlPrefix + 'research/adminoffice/reviewboard/index.htm','MetaDescription==Create human subjects protocols for submission to BloodCenter IRB','MetaKeywords==IRB, human subjects','Title==Institutional Review Board');
g_navNode_7_4_1=g_navNode_7_4.addNode('193','Exchange Visitor Program',ssUrlPrefix + 'research/adminoffice/exchangevisitor/index.htm','MetaDescription==Get information on visas for foreign fellows','MetaKeywords==J-1, visa, research scholar, postdoc, fellows, postdoctoral fellowship','Title==Exchange Visitor Program');
g_navNode_7_4_2=g_navNode_7_4.addNode('194','Training Grant',ssUrlPrefix + 'research/adminoffice/grants/index.htm','MetaDescription==Learn about BloodCenter\\x27s NIH training grant and postdoctoral fellowship opportunities','MetaKeywords==NIH, Training Grant, postdoc, postdoctoral fellows, transfusion science','Title==NIH Training Grant');
g_navNode_7_4_3=g_navNode_7_4.addNode('195','Technology Transfer',ssUrlPrefix + 'research/adminoffice/techtransfer/index.htm','MetaDescription==Learn about BloodCenter technologies available for licensing','MetaKeywords==MTA, CDA, patent, license agreement, technology','Title==Technology Transfer');
g_navNode_7_5=g_navNode_7.addNode('92','Publications',ssUrlPrefix + 'research/publications/index.htm','AltLabel==PUBLICATIONS','MetaDescription==View annual lists of publications by BloodCenter scientists','MetaKeywords==Publications, research, journal articles, immunology, transfusion medicine, thrombosis, hemostasis, vascular biology,','Title==Research Publications Overview');
g_navNode_7_5_0=g_navNode_7_5.addNode('197','2000',ssUrlPrefix + 'research/publications/pub2000/index.htm','MetaDescription==See list of research publications by BloodCenter scientists for the year 2000','MetaKeywords==Publications, research, journal articles, 2000','Title==Research Publications - 2000');
g_navNode_7_5_1=g_navNode_7_5.addNode('198','2001',ssUrlPrefix + 'research/publications/pub2001/index.htm','MetaDescription==See list of research publications by BloodCenter scientists for the year 2001','MetaKeywords==Publications, research, journal articles, 2001','Title==Research Publications - 2001');
g_navNode_7_5_2=g_navNode_7_5.addNode('199','2002',ssUrlPrefix + 'research/publications/pub2002/index.htm','MetaDescription==See list of research publications by BloodCenter scientists for the year 2002','MetaKeywords==publications, research, journal articles, 2002','Title==Research Publications - 2002');
g_navNode_7_5_3=g_navNode_7_5.addNode('200','2003',ssUrlPrefix + 'research/publications/pub2003/index.htm','MetaDescription==See list of research publications by BloodCenter scientists for the year 2000','MetaKeywords==Publications, Research, journal articles, 2003','Title==Research Publications - 2003');
g_navNode_7_5_4=g_navNode_7_5.addNode('201','2004',ssUrlPrefix + 'research/publications/pub2004/index.htm','MetaDescription==See list of research publications by BloodCenter scientists for the year 2004','MetaKeywords==Publications, research, journal articles, 2004','Title==Resesarch Publications - 2004');
g_navNode_7_5_5=g_navNode_7_5.addNode('202','2005',ssUrlPrefix + 'research/publications/pub2005/index.htm','MetaDescription==See list of research publications by BloodCenter scientists for the year 2005','MetaKeywords==Publications, research, journal articles, 2005','Title==Publications by BloodCenter of Wisconsin Research Faculty \u2013 2005');
g_navNode_7_5_6=g_navNode_7_5.addNode('203','2006',ssUrlPrefix + 'research/publications/pub2006/index.htm','MetaDescription==See list of research publications by BloodCenter scientists for the year 2006','MetaKeywords==Publications, research, journal articles, 2006','Title==Publications by BloodCenter of Wisconsin Research Faculty \u2013 2006');
g_navNode_7_5_7=g_navNode_7_5.addNode('204','2007',ssUrlPrefix + 'research/publications/pub2007/index.htm','MetaDescription==See list of research publications by BloodCenter scientists for the year 2007','MetaKeywords==Publications, research, journal articles, 2007','Title==Publications by BloodCenter of Wisconsin Research Faculty \u2013 2007');
g_navNode_7_5_8=g_navNode_7_5.addNode('205','2008',ssUrlPrefix + 'research/publications/pub2008/index.htm','MetaDescription==See list of research publications by BloodCenter scientists for the year 2008','MetaKeywords==Publications, research, journal articles, 2008','Title==Publications by BloodCenter of Wisconsin Research Faculty \u2013 2008');
g_navNode_7_6=g_navNode_7.addNode('94','Seminar Series \x26 Schedule',ssUrlPrefix + 'research/seminars/index.htm','AltLabel==SEMINAR SERIES\x7c\x26 SCHEDULE','MetaDescription==Seminar Series \x26 Schedule overview','MetaKeywords==BRI, Seminar Series, Aster Lecture, Mosesson Lecture, Blood Research Institute','Title==Seminar Series \x26 Schedule');
g_navNode_7_6_0=g_navNode_7_6.addNode('206','BRI Sponsored Seminars',ssUrlPrefix + 'research/seminars/bri/index.htm','MetaDescription==BRI Seminar Series research interests and contact information','MetaKeywords==BRI Seminar Series, Thrombosis, Hemostasis and Vascular Biology, Immunobiology, Immunology, Transfusion Medicine, Stem Cell Biology/Hematopoiesis','Title==BRI Seminar Series');
g_navNode_7_6_1=g_navNode_7_6.addNode('207','Immunology Program Seminars',ssUrlPrefix + 'research/seminars/immunology/index.htm','MetaDescription==Immunology Seminar Series information','MetaKeywords==Immunology Seminar Series, Blood Research Institute','Title==Immunology Seminar Series');
g_navNode_7_7=g_navNode_7.addNode('96','Contract Research',ssUrlPrefix + 'research/contract/index.htm','AltLabel==CONTRACT\x7cRESEARCH','MetaDescription==Contract Research overview, primary areas of research, support provided','MetaKeywords==Contract Research, Applied Research, Investigators, Diagnostic Laboratories, Support, Regulatory Services','Title==Contract Research');
g_navNode_8=g_navNode_Root.addNode('9','Education',ssUrlPrefix + 'education/index.htm','AltLabel==EDUCATION','Title==Education');
g_navNode_8_0=g_navNode_8.addNode('122','Overview',ssUrlPrefix + 'education/Overview/index.htm','AltLabel==OVERVIEW','MetaDescription==Clinical Education Blood Center Wisconsin provides Specialist Blood Banking \x28SBB\x29 training, blood banking workshops, transfusion medicine training, fellowship programs, nursing transfusion practice, scientific seminars \x26 lectures','MetaKeywords==SBB, fellowships, clinical education, specialist blood banking, transfusion medicine, nursing transfusion practice, lectures, bone marrow transplantation, HLA  ','Title==Education');
g_navNode_8_1=g_navNode_8.addNode('79','Medical Student \x26 Resident Training',ssUrlPrefix + 'education/medstudents/index.htm','AltLabel==MEDICAL STUDENT \x26\x7cRESIDENT TRAINING','MetaDescription==BloodCenter of Wisconsin trains medical students, pathology residents, transfusion medicine fellows, hematology/oncology fellows, research fellows and provides educational conferences                    ','MetaKeywords==pathology resident training, medical student, transfusion medicine, blood banking, fellowships, conferences, research ','Title==Medical Student \x26 Resident Training');
g_navNode_8_2=g_navNode_8.addNode('83','Blood Banking Workshop',ssUrlPrefix + 'education/workshop/index.htm','AltLabel==BLOOD BANKING\x7cWORKSHOP','MetaDescription==SBB Program students present a \"wet\" blood banking workshop teaching blood banking techniques.  Specialists in blood banking from BloodCenter\\x27s Immunohematology Reference help provide this educational experience.','MetaKeywords==blood banking workshop, specialists blood banking, SBB program, SBB, blood banking techniques, immunohematology','Title==Blood Banking Workshop');
g_navNode_8_3=g_navNode_8.addNode('85','Lectures',ssUrlPrefix + 'education/Lectures/index.htm','AltLabel==LECTURES','MetaDescription==Comprehensive lectures \x26 seminar topics in transfusion medicine, blood-related research, histocompatability, hemostasis, bone marrow transplantation and SBB program topics','MetaKeywords==lectures, seminars, transfusion medicine, histocompatability, Sickle cell disease, HLA, Platelet immunology, hemostasis, ADAMTS-13, molecular diagnostics, SBB, blood-related research, bone marrow transplantation, stem cell stransplantation, organ transplant, blood components, anemia, drug-induced anemia, platelet transfusion, platelet research, neonatal transfusion, obstetric transfusion, massive transfusion, pediatric transfusion, component therapy, blood group antigens, ABO, Rh, autoimmune hemolytic anemia, AIHA, blood bank management ','Title==Lectures \x26 Scientific Seminars','secondaryUrlVariableField==EditableWebpage');
g_navNode_8_3_0=g_navNode_8_3.addNode('110','SBB Lectures',ssUrlPrefix + 'education/Lectures/sbb/index.htm','MetaDescription==The SBB lecture series \x28specialist in blood banking\x29 covers such topics as red cell antigen systems, blood donor qualification,  blood component preparation, blood component storage.  Continuing education credits are available to non-SBB students','MetaKeywords==SBB lectures, SBB program, specialist blood banking, red cell antigen systems, blood donor qualification,  blood component preparation, blood component storage, anemia, continuing education','Title==SBB Lectures');
g_navNode_8_3_1=g_navNode_8_3.addNode('111','Downtown Speaker Series',ssUrlPrefix + 'education/Lectures/Downtown/index.htm');
g_navNode_8_3_2=g_navNode_8_3.addNode('112','Research Seminars',ssUrlPrefix + 'education/Lectures/Research Seminars/index.htm');
g_navNode_8_3_3=g_navNode_8_3.addNode('113','AABB CTHT \x26 ASCP Teleconferences',ssUrlPrefix + 'education/Lectures/teleconferences/index.htm','MetaDescription==BloodCenter of WI subscribes to AABB, CTHT \x26 ASCP teleconferences. Continuing education is available for area medical professionals by attending these confereences at BloodCenter\\x27s Downtown Headquarters ','MetaKeywords==AABB, CTHT, ASACP, Teleconferences, continuing education','Title==AABB, CHTH \x26 ASCP Teleconferences');
g_navNode_8_3_4=g_navNode_8_3.addNode('115','Visitor\'s Safety Guide',ssUrlPrefix + 'education/Lectures/visitorssafety/index.htm','MetaDescription==For individuals spending time in a laboratory or work area at BloodCenter of Wisconsin, please view our Visitor\\x27s Safety Guide','MetaKeywords==Visitor\\x27s Safety Guide, visitors, Safety guide','Title==Visitor\\x27s Safety Guide');
g_navNode_8_3_5=g_navNode_8_3.addNode('128','BloodCenter Speakers',ssUrlPrefix + 'education/Lectures/BloodCenter Speakers/index.htm');
g_navNode_8_4=g_navNode_8.addNode('95','Fellowship Programs',ssUrlPrefix + 'education/fellowships/index.htm','AltLabel==FELLOWSHIP\x7cPROGRAMS','MetaDescription==ACGME Accredited Transfusion Medicine Fellowship at Blood Center of WI Associated with Medical College of Wisconsin. Blood Center research fellowships ','MetaKeywords==transfusion medicine fellowship, research fellowship, Medical College Wisconsin \x28MCW\x29,ACGME','Title==Fellowship Programs');
g_navNode_8_4_0=g_navNode_8_4.addNode('129','Transfusion Medicine Fellowship',ssUrlPrefix + 'education/fellowships/Transfusion Medicine Fellowship/index.htm','MetaDescription==Transfusion Medicine Fellowship Program at BloodCenter of WI in association with the Medical College of Wisconsin is a 1 year ACGME-accredited program offered in blood banking and transfusion medicine','MetaKeywords==Transfusion Medicine Fellowship, ACGME-accredited, blood banking, transfusion medicine','Title==Transfusion Medicine Fellowship');
g_navNode_8_4_1=g_navNode_8_4.addNode('130','Research Fellowship Programs',ssUrlPrefix + 'education/fellowships/Research Fellowship Programs/index.htm','MetaDescription==BloodCenter of WI offers Research Fellowships\x3a predoctoral fellowships, postdoctoral fellowships, training grant fellowships \x26 hematology resident research opportuniites','MetaKeywords==Research Fellowships, predoctoral, postdoctoral, training grant, hematology residents','Title==Research Fellowships');
g_navNode_8_5=g_navNode_8.addNode('99','SBB Program',ssUrlPrefix + 'education/sbbprogram/index.htm','AltLabel==SBB PROGRAM','MetaDescription==SBB Program \x28Specialist in Blood Banking Technology\x29 at BloodCenter of WI is accredited by  CAAHEP and one of the oldest programs in the country','MetaKeywords==Specialist in Blood Banking, SBB, SBB Program, Specialist in Blood Banking Technology, accredited','Title==Specialist in Blood Banking \x28SBB\x29 program','secondaryUrlVariableField==EditableWebpage');
g_navNode_8_5_0=g_navNode_8_5.addNode('116','SBB Program Focus',ssUrlPrefix + 'education/sbbprogram/focus/index.htm','MetaDescription==BloodCenter\\x27s SBB program provides expertise in all areas of transfusion medcine','MetaKeywords==SBB Program, Specialist in Blood Banking, SBB, Specialist in Blood Banking Technology, transfusion medicine','Title==SBB Program Focus');
g_navNode_8_5_1=g_navNode_8_5.addNode('118','Application Process',ssUrlPrefix + 'education/sbbprogram/accreditation/index.htm','MetaDescription==BloodCenter SBB program application process states entrance requirements and ASCP criteria for admission.','MetaKeywords==SBB Application, entrance requirements, ASCP','Title==SBB Application Process');
g_navNode_8_5_2=g_navNode_8_5.addNode('119','Master of Transfusion Medicine',ssUrlPrefix + 'education/sbbprogram/mstm/index.htm','MetaDescription==BloodCenter of WI SBB program in assciciation with Marquette University has an integrated Master ofTransfusion Medcine','MetaKeywords==Master Transfusion Medicine, Marquette University, SBB program, Specialist in Blood Banking, Specialist in Blood Banking Technology,  SBB','Title==Master of Transfusion Medicine');
g_navNode_8_6=g_navNode_8.addNode('51','Nursing Transfusion Practice',ssUrlPrefix + 'education/Nursing/index.htm','AltLabel==NURSING TRANSFUSION\x7cPRACTICE');
g_navNode_8_7=g_navNode_8.addNode('101','Tours \x26 Speakers',ssUrlPrefix + 'education/tours/index.htm','AltLabel==TOURS \x26 SPEAKERS','MetaDescription==BloodCenter of Wisconsin hosts tours at its downtown Milwaukee site and is also able to provide community speakers on a variety of topics and at a variety of levels ','MetaKeywords==Blood Center Tours, community speakers','Title==Tours \x26 Speakers');
g_navNode_9=g_navNode_Root.addNode('10','Volunteering \x26 Charitable Giving',ssUrlPrefix + 'volunteering/index.htm','AltLabel==VOLUNTEERING \x26 \x7cCHARITABLE GIVING','Title==Volunteering \x26 Charitable Giving');
g_navNode_9_0=g_navNode_9.addNode('30','Overview',ssUrlPrefix + 'volunteering/overview/index.htm','AltLabel==OVERVIEW','MetaKeywords==Volunteer, community, strengthen, support','Title==Volunteering and Charitable Giving');
g_navNode_9_1=g_navNode_9.addNode('31','Becoming a Volunteer',ssUrlPrefix + 'volunteering/becoming/index.htm','AltLabel==BECOMING A \x7cVOLUNTEER','MetaKeywords==Become a Volunteer, Volunteer Benefits, Volunteer Publication, The Link, 2008, 2009','Title==Volunteer Information');
g_navNode_9_1_0=g_navNode_9_1.addNode('229','Volunteer Opportunities',ssUrlPrefix + 'volunteering/becoming/opportunity/index.htm','MetaKeywords==Cafe Volunteer, Phone Call Volunteer, Child Care Volunteer, Clerical Volunteer, Mobile Drive Volunteer, donor center, location, Brown Deer, Greenfield, Kenosha, Manitowoc, Marshfield, Milwaukee, Racine, Sheboygan, Waukesha, Wauwatosa, West Bend','NativeFileImageRendition==true','PortraitImageRendition==false','Title==Volunteer Opportunities');
g_navNode_9_1_1=g_navNode_9_1.addNode('230','Apply to Volunteer',ssUrlPrefix + 'volunteering/becoming/apply/index.htm','MetaKeywords==Volunteer Application Form, Volunteer Background Information Form, Volunteer Reference Form, Maria Radomski, Volunteer Services','Title==Apply to Volunteer');
g_navNode_9_2=g_navNode_9.addNode('32','Charitable Giving',ssUrlPrefix + 'volunteering/charitablegiving/index.htm','AltLabel==CHARITABLE \x7cGIVING','MetaKeywords==Blood Research Institute, BRI, von Willebrand Disease, Mari, Decreased post-surgical bleeding, Safer pregnancies, More successful transplants, Hope for newborns,  Fewer transfusion reactions,  Reduced risk for hemophilia patients, Extended blood supply, Better treatment for sickle cell patients, Newest Researchers, Alan E. Mast, M.D., Ph.D.  ','NativeFileImageRendition==true','Title==Charitable Giving');
g_navNode_9_2_0=g_navNode_9_2.addNode('33','Charitable Giving Opportunities',ssUrlPrefix + 'volunteering/charitablegiving/opportunity/index.htm','MetaKeywords==Endowed Chair, Family Endowment Fund, Fellowships, Lecturships and Seminars, Equipment, Anne Taylor, gifts','NativeFileImageRendition==true','Title==Charitable Giving Opportunities');
g_navNode_9_2_1=g_navNode_9_2.addNode('34','Your Gifts At Work',ssUrlPrefix + 'volunteering/charitablegiving/yourgifts/index.htm','MetaKeywords==Make an online donation, memorials, honoraria, tributes, matched employer gifts, stock transfers, planned gifts, real estate, annual contributions, employer giving campaigns, we care at pick n\\x27 save','Title==Your Gifts At Work');
g_navNode_9_2_2=g_navNode_9_2.addNode('35','Planting the Seeds for a Cure',ssUrlPrefix + 'volunteering/charitablegiving/seeds/index.htm','MetaKeywords==Blood Research Institute, BRI, seeds, cure, Grace Anne, leukemia, Garden of Discovery for Research','NativeFileImageRendition==true','Title==Planting the Seeds for a Cure','WordImageRendition==false');
g_navNode_9_2_5=g_navNode_9_2.addNode('305','Online Donation',ssUrlPrefix + 'volunteering/charitablegiving/Contribute/index.htm');
g_navNode_10=g_navNode_Root.addNode('11','About BloodCenter',ssUrlPrefix + 'about/index.htm','AltLabel==ABOUT \x7cBLOODCENTER','Menu1AltColor==TRUE','Title==About BloodCenter');
g_navNode_10_0=g_navNode_10.addNode('Overview','Overview',ssUrlPrefix + 'about/Overview/index.htm','AltLabel==OVERVIEW','MetaKeywords==Doing More Good Than You Know, Diagnostic Laboratories, Medical Services, Blood Research Institute, Blood Services, facts, staff members, donors, mission, vision, values, excellence, integrity, learning, respect, innovation, service','Title==About BloodCenter');
g_navNode_10_1=g_navNode_10.addNode('Facts','BloodCenter Facts',ssUrlPrefix + 'about/BloodCenterFacts/index.htm','AltLabel==BLOODCENTER\x7c FACTS','MetaKeywords==BloodCenter of Wisconsin, businesses, civic organizations, Blood Research Institute, patients, Johnny','NativeFileImageRendition==true','Title==BloodCenter of Wisconsin Facts');
g_navNode_10_2=g_navNode_10.addNode('Board','CEO \x26 Board',ssUrlPrefix + 'about/Board/index.htm','AltLabel==CEO \x26 BOARD','MetaKeywords==Board of Directors, Chairman, Michael H. White, President, Jacquelyn Fredrick, President, CEO, Vice Chairman, Thomas J. Hauske, Jr., Corporate Secretary, Richard Gallagher, Treasurer, Peter Ziegler','Title==CEO \x26 BOARD');
g_navNode_10_2_0=g_navNode_10_2.addNode('265','Jacquelyn Fredrick',ssUrlPrefix + 'about/Board/JackieBio/index.htm');
g_navNode_10_3=g_navNode_10.addNode('Contact','Contact Us',ssUrlPrefix + 'about/Contact/index.htm','AltLabel==CONTACT US','MetaKeywords==Donating Blood, myBCW, Employment, Volunteering, Monetary donations, Diagnostic tests, Comprehensive Center for Bleeding Disorders, Media inquires','Title==Contact Us');
g_navNode_10_4=g_navNode_10.addNode('CommunityReport','Community Report',ssUrlPrefix + 'about/CommunityReport/index.htm','AltLabel==COMMUNITY REPORT','MetaKeywords==2009, Collectively Greater, values, mission, report','NativeFileImageRendition==true','Title==Community Report');
g_navNode_11=g_navNode_Root.addNode('12','News \x26 Events',ssUrlPrefix + 'news/index.htm','AltLabel==NEWS \x7c\x26EVENTS','Menu1AltColor==TRUE','Title==Blood Facts');
g_navNode_11_0=g_navNode_11.addNode('Events','Events Calendar',ssUrlPrefix + 'news/EventsCalendar/index.htm','AltLabel==EVENTS CALENDAR','NativeFileImageRendition==true');
g_navNode_11_0_1=g_navNode_11_0.addNode('276','Pictures from Recent Events',ssUrlPrefix + 'news/EventsCalendar/PicturesfromRecentEvents/index.htm');
g_navNode_11_0_2=g_navNode_11_0.addNode('277','Sweepstakes and Contest Winners',ssUrlPrefix + 'news/EventsCalendar/SweepstakesandContestWinners/index.htm','AltLabel==Sweepstakes and \x7cContest Winners');
g_navNode_11_0_3=g_navNode_11_0.addNode('278','Summer Scholarship Drives',ssUrlPrefix + 'news/EventsCalendar/SummerScholarshipDrives/index.htm');
g_navNode_11_0_4=g_navNode_11_0.addNode('103','Wayne\'s challenge',ssUrlPrefix + 'news/EventsCalendar/Wayneschallenge/index.htm');
g_navNode_11_1=g_navNode_11.addNode('BloodFacts','Blood Facts',ssUrlPrefix + 'news/BloodFacts/index.htm','AltLabel==BLOOD FACTS');
g_navNode_11_2=g_navNode_11.addNode('ExpertList','Expert List for Interviews',ssUrlPrefix + 'news/ExpertListforInterviews/index.htm','AltLabel==EXPERT LIST\x7c FOR INTERVIEWS');
g_navNode_11_3=g_navNode_11.addNode('PressReleases','Current Press Releases',ssUrlPrefix + 'news/CurrentPressReleases/index.htm','AltLabel==CURRENT PRESS\x7c RELEASES');
g_navNode_11_4=g_navNode_11.addNode('pressreleasearchive','Press Release Archive',ssUrlPrefix + 'news/PressReleaseArchive/index.htm','AltLabel==PRESS RELEASE\x7c ARCHIVE');
g_navNode_12=g_navNode_Root.addNode('13','Employment Opportunities',ssUrlPrefix + 'employment/index.htm','AltLabel==EMPLOYMENT \x7cOPPORTUNITIES','Menu1AltColor==TRUE','MetaDescription==Blood donation through BloodCenter of Wisconsin provides important benefits to communities throughout WI. By donating blood, you are doing more good than you know.','MetaKeywords==Blood donation, Donating blood, Advantages of donating blood, Importance of donating blood, Benefit of donating blood, Reasons to donate blood','Title==Employment Opportunities');
g_navNode_12_0=g_navNode_12.addNode('102','Working at BloodCenter',ssUrlPrefix + 'employment/employment/index.htm','AltLabel==WORKING AT\x7cBLOODCENTER');
g_navNode_12_0_0=g_navNode_12_0.addNode('159','EEO/AA Statement',ssUrlPrefix + 'employment/employment/eeo/index.htm');
