//<script language="JavaScript">
//<!--
function MM_findObj(n, d) { //v3.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
   var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
   if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
 
//book mark current visited page
function bookmark(){
  var url=document.location.toString();
  var title=document.title;
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
  window.external.AddFavorite(url,title);
  } else if (navigator.appName == "Netscape") {
    window.sidebar.addPanel(title,url,"");
  } else {
    alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
  }
}

//function related picture rotation
function loadpage(img,imgN) {
	totalImg = imgN;
	imgName = img;
	browver= parseInt(navigator.appVersion);
	browtype = navigator.appName;
	browsertype = "old";
	if (browtype == "Netscape" && !(browver < 3)) {
		browsertype = "new"; 
	}
	if (browtype == "Microsoft Internet Explorer" && !(browver < 4)) {
		browsertype = "new";
	}
	if (browsertype == "new") {
		thetimer = setTimeout("changeimage()", 5000);
		curImgNum = 1;
		scrollingImgs = new Array(totalImg);
		for (i=1; i<=totalImg; i++){
			scrollingImgs[i] = new Image();
			scrollingImgs[i].src = "/library/images/"+imgName +i+".gif";
		}
	}
}

function changeimage(){
	if (browsertype == "new") {
		curImgNum = curImgNum + 1
		if (curImgNum == totalImg) {
			curImgNum = 1
		}
		imagesource = "/library/images/"+imgName+curImgNum + ".gif";
		window.document.bannerad.src = imagesource;
		thetimer = setTimeout("changeimage()", 5000);
	}
}

//conference center related script
//set up the object based on the browser type
function convertToObj(id){
   return document.getElementById?document.getElementById(id):document.all?document.all[id]:document.layers[id];
}

function hideConfAll(){
	hide("divSign");
	hide("divEdu1");
	hide("divEdu2");
	hide("divBoard");
	hide("divCenter1");
	hide("divCenter2");
	hide("divGarden");
	hide("divPatio");
}
//hide object
function hide(id) {
    var obj = convertToObj(id);
    if (obj!=null)
        obj.style.display = "none";
}

//show object
function show(id) {
    var obj = convertToObj(id);
    if (obj!=null)
        obj.style.display = "block";
}

//show object
function showConf(id) {
	hideConfAll();
    var obj = convertToObj(id);
    if (obj!=null)
        obj.style.display = "block";
}

//------------------------------Meeting Calendar related javascript
//show current month/year calendar
function showCurrentCalendar(){
    var now = new Date();
    var obj = convertToObj("div" + now.getYear() + (now.getMonth()+1));
    if (obj!=null)
        obj.style.display = "block";
}
//hide Meeting
function hideMeeting(year){
    var curYear = (new Date()).getYear();
    for (var j=year; j<=curYear; j++){
        hideMeetingYearMonth(j);
    }
}

function hideMeetingYearMonth(year){
    for (var i=1; i<13; i++){
        var obj = convertToObj("div" + year + i);
        obj.style.display = "none";
    }
}

//show/hide object
function twist(id) {
    var obj = convertToObj(id);
    if (obj!=null){
        if (obj.style.display == "block")
            obj.style.display = "none";
        else
            obj.style.display = "block";
    }
}
//-----------------end of Meeting Calendar related javascript

//breadcrumbs
function breadcrumbs(){
  sURL = new String;
  bits = new Object;
  var x = 0;
  var stop = 0;
  var output = "<a href=\"/\">Home</a>  >  ";
  sURL = location.href;
  sURL = sURL.slice(8,sURL.length);
  chunkStart = sURL.indexOf("/");
  sURL = sURL.slice(chunkStart+1,sURL.length)
  while(!stop){
    chunkStart = sURL.indexOf("/");
    if (chunkStart != -1){
      bits[x] = sURL.slice(0,chunkStart)
      sURL = sURL.slice(chunkStart+1,sURL.length);
    }else{
      stop = 1;
    }
    x++;
  }
  for(var i in bits){
    output += "<a href=\"";
    for(y=1;y<x-i;y++){
      output += "../";
    }
    output += bits[i] + "/\">" + bits[i] + "</a>  >  ";
  }
  document.write(output + document.title);
}

//disable the enter key
function onKeyPress (e) {
		var keycode;
		if (window.event) keycode = window.event.keyCode;
		else if (e) keycode = e.which;
			else return true;

		if (keycode == 13) 
			return false;

		return true; 
	}

function Trim(str){
	while(str.charAt(0)==' '){
		str=str.substring(1,str.length);
	}
	while (str.charAt(str.length-1)==' '){
		str=str.substring(0,str.length-1);
	}
	return str;
}

function InitCap(str) {
	var index;
	var tmpStr;
	var tmpChar;
	var preString;
	var postString;
	var strlen;
	str=Trim(str);
	tmpStr = str.toLowerCase();
	strLen = tmpStr.length;
	if (strLen > 0)  {
		for (index = 0; index < strLen; index++)  {
			if (index == 0)  {
				tmpChar = tmpStr.substring(0,1).toUpperCase();
				postString = tmpStr.substring(1,strLen);
				tmpStr = tmpChar + postString;
			}
			else {
				tmpChar = tmpStr.substring(index, index+1);
				if (tmpChar == " " && index < (strLen-1))  {
					tmpChar = tmpStr.substring(index+1, index+2).toUpperCase();
					preString = tmpStr.substring(0, index+1);
					postString = tmpStr.substring(index+2,strLen);
					tmpStr = preString + tmpChar + postString;
         			}
      			}
   		}
	}
	return tmpStr;
}

function isEmail(obj) {
     if (obj.value!="" && obj.value!=null){
	var str = obj.value;
  	// are regular expressions supported?
 	var supported = 0;
  	if (window.RegExp) {
		var tempStr = "a";
    		var tempReg = new RegExp(tempStr);
    		if (tempReg.test(tempStr)) supported = 1;
  	}

  	if (supported==0) 
  		return (str.indexOf(".") > 2) && (str.indexOf("@") > 1);

 	var r0 = new RegExp("(@.*@)|(\\.\\.)|(@\\.)");
	var r1= new RegExp("^[\\(\\)<>@,;:*#&|~`\/\\\\\\\"\\.\\[\\]]");
	//this one will include all email address like test@njha.com.cn
  	var r2 = new RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$");

  	if ( !r0.test(str) && !r1.test(str) && r2.test(str) ){
		return true;
	}
	else{
		alert("Your e-mail is not correct. Please check and retype.");
		obj.focus();
		return false;
	}
    }
}

function capitalizeWords(string)
{
var tmpStr, tmpChar, preString, postString, strlen;
tmpStr = string.toLowerCase();
stringLen = tmpStr.length;
if (stringLen > 0)
{
  for (i = 0; i < stringLen; i++)
  {
    if (i == 0)
	{
      tmpChar = tmpStr.substring(0,1).toUpperCase();
      postString = tmpStr.substring(1,stringLen);
      tmpStr = tmpChar + postString;
    }
    else
	{
      tmpChar = tmpStr.substring(i,i+1);
      if (tmpChar == " " && i < (stringLen-1))
	  {
      tmpChar = tmpStr.substring(i+1,i+2).toUpperCase();
      preString = tmpStr.substring(0,i+1);
      postString = tmpStr.substring(i+2,stringLen);
      tmpStr = preString + tmpChar + postString;
      }
    }
  }
}
return tmpStr;
}

function removeLeadingAndTrailingChar (inputString, removeChar) 
{
	var returnString = inputString;
	if (removeChar.length)
	{
	  while(''+returnString.charAt(0)==removeChar)
		{
		  returnString=returnString.substring(1,returnString.length);
		}
		while(''+returnString.charAt(returnString.length-1)==removeChar)
	  {
	    returnString=returnString.substring(0,returnString.length-1);
	  }
	}
	return returnString;
}

function mmLoadMenus() {
  if (window.mm_menu_njha_0) return;
  window.mm_menu_njha_0 = new Menu("root",160,17,"Arial, Helvetica, sans-serif",11,"#fff","#99ff00","#0023ab","#0023ab","left","middle",3,0,1000,-5,7,true,true,true,0,false,true);
  mm_menu_njha_0.addMenuItem("Constituency&nbsp;Groups","location='http://www.njha.com/ps/resources.aspx'");
  mm_menu_njha_0.addMenuItem("Auxilians&nbsp;&amp;&nbsp;Volunteers","location='http://www.njha.com/auxilians/index.aspx'");  
  mm_menu_njha_0.addMenuItem("Children","location='http://www.njha.com/healthrecruitment/kid.aspx'");
  mm_menu_njha_0.addMenuItem("Consumers","location='http://www.njha.com/LibrarySection/Consumers_Resources.aspx'");
  mm_menu_njha_0.addMenuItem("Healthcare&nbsp;Professionals","location='http://www.njha.com/ps/resources.aspx'");
  mm_menu_njha_0.addMenuItem("Press","location='http://www.njha.com/Press/index.aspx'");
  mm_menu_njha_0.addMenuItem("Trustees","location='http://www.njha.com/trustee/'");
  mm_menu_njha_0.addMenuItem("Vendors","location='http://www.njha.com/cs/StrategicPartnerProgram.aspx'");
   mm_menu_njha_0.hideOnMouseOut=true;
   mm_menu_njha_0.menuBorder=1;
   mm_menu_njha_0.menuLiteBgColor='#ffffff';
   mm_menu_njha_0.menuBorderBgColor='#555555';
   mm_menu_njha_0.bgColor='#999999';
  window.mm_menu_njha_1 = new Menu("root",165,17,"Arial, Helvetica, sans-serif",11,"#ffffff","#99ff00","#0023ab","#0023ab","left","middle",3,0,1000,-5,7,true,true,true,0,false,true);
  mm_menu_njha_1.addMenuItem("Doing&nbsp;Business&nbsp;with&nbsp;NJHA","location='http://www.njha.com/cs/index.aspx'");
  mm_menu_njha_1.addMenuItem("Benefit&nbsp;Programs&nbsp;&amp;&nbsp;HR&nbsp;Services","location='http://www.njha.com/cs/BenefitProgramsAndHRServices.aspx'");
  mm_menu_njha_1.addMenuItem("Finance/Operations","location='http://www.njha.com/cs/FinanceOperations.aspx'");
  mm_menu_njha_1.addMenuItem("Food&nbsp;Services","location='http://www.njha.com/cs/Food.aspx'");
  mm_menu_njha_1.addMenuItem("Group&nbsp;Purchasing","location='http://www.njha.com/cs/GroupPurchasingServices.aspx'");
  mm_menu_njha_1.addMenuItem("Information&nbsp;Services","location='http://www.njha.com/cs/InformationServices.aspx'");
  mm_menu_njha_1.addMenuItem("Materials&nbsp;Management","location='http://www.njha.com/cs/MaterialsManagement.aspx'");
  mm_menu_njha_1.addMenuItem("Pharmacy&nbsp;Services","location='http://www.njha.com/cs/Pharmacy.aspx'");
  mm_menu_njha_1.addMenuItem("Princeton&nbsp;Claims&nbsp;Management","location='http://www.njha.com/cs/PCM.aspx'");
  mm_menu_njha_1.addMenuItem("Registry&nbsp;Management&nbsp;Program","window.open('http://www.njharegistry.com/public/', '_blank');");
  mm_menu_njha_1.addMenuItem("Staffing&nbsp;Services","location='http://www.njha.com/cs/StaffingServices.aspx'");
  mm_menu_njha_1.addMenuItem("Strategic&nbsp;Partner&nbsp;Program","location='http://www.njha.com/cs/StrategicPartnerProgram.aspx'");
  mm_menu_njha_1.addMenuItem("Vendors","location='http://www.njha.com/cs/spp_Partners.aspx'");
   mm_menu_njha_1.hideOnMouseOut=true;
   mm_menu_njha_1.menuBorder=1;
   mm_menu_njha_1.menuLiteBgColor='#ffffff';
   mm_menu_njha_1.menuBorderBgColor='#555555';
   mm_menu_njha_1.bgColor='#999999';
  window.mm_menu_njha_2 = new Menu("root",190,17,"Arial, Helvetica, sans-serif",11,"#ffffff","#99ff00","#0023ab","#0023ab","left","middle",3,0,1000,-5,7,true,true,true,0,false,true);
  mm_menu_njha_2.addMenuItem("Jobs&nbsp;&amp;&nbsp;Careers","location='http://www.njha.com/hr/'");
  mm_menu_njha_2.addMenuItem("Employers,&nbsp;Classified&nbsp;Ads","window.open('http://njha.jobscience.com/index.cfm?idset=1051,njha0001', '_blank');");
  mm_menu_njha_2.addMenuItem("HR&nbsp;Services","location='http://www.njha.com/hr/hr.aspx'");
  mm_menu_njha_2.addMenuItem("Jobs&nbsp;at&nbsp;N.J.&nbsp;Hospitals","window.open('http://www.jobscience.com/index.cfm?idset=1051,njha001', '_blank');");
  mm_menu_njha_2.addMenuItem("Jobs&nbsp;at&nbsp;NJHA","window.open('http://njha.jobscience.com/index.cfm?idset=1051,njha0001', '_blank');");
  mm_menu_njha_2.addMenuItem("Nursing&nbsp;&amp;&nbsp;Health&nbsp;Careers","location='http://www.njha.com/healthrecruitment/'");
  mm_menu_njha_2.addMenuItem("Job&nbsp;Seekers","window.open('http://njha.jobscience.com/index.cfm?idset=1051,njha0001', '_blank');");
  mm_menu_njha_2.addMenuItem("Travel&nbsp;Nurses/Registry&nbsp;Management","window.open('http://www.njharegistry.com/public/', '_blank');");
  mm_menu_njha_2.addMenuItem("Scholarship,&nbsp;HRET","location='http://www.njha.com/hret/scholarship.aspx'");
   mm_menu_njha_2.hideOnMouseOut=true;
   mm_menu_njha_2.menuBorder=1;
   mm_menu_njha_2.menuLiteBgColor='#ffffff';
   mm_menu_njha_2.menuBorderBgColor='#555555';
   mm_menu_njha_2.bgColor='#999999';
  window.mm_menu_njha_3 = new Menu("root",213,17,"Arial, Helvetica, sans-serif",11,"#ffffff","#99ff00","#0023ab","#0023ab","left","middle",3,0,1000,-5,7,true,true,true,0,false,true);
  mm_menu_njha_3.addMenuItem("Education,&nbsp;Calendars,&nbsp;Conference&nbsp;Center","location='http://www.njha.com/education/'");
  mm_menu_njha_3.addMenuItem("Annual&nbsp;&amp;&nbsp;Special&nbsp;Meetings","location='http://www.njha.com/AboutNJHA/AnnualMeetings.aspx'");
  mm_menu_njha_3.addMenuItem("Meeting&nbsp;Calendars","location='http://www.njha.com/AboutNJHA/Calendars.aspx'");
  mm_menu_njha_3.addMenuItem("Conference&nbsp;Center&nbsp;at&nbsp;NJHA","location='http://www.njha.com/conferencecntr/index.aspx'");
  mm_menu_njha_3.addMenuItem("Continuing&nbsp;Education,&nbsp;HRET","location='http://www.njha.com/education/conted.aspx'");
  mm_menu_njha_3.addMenuItem("Directions","location='http://www.njha.com/conferencecntr/html/mc.directions.aspx'");
  mm_menu_njha_3.addMenuItem("Distance&nbsp;Learning","location='http://www.njha.com/carelearning/'");
  mm_menu_njha_3.addMenuItem("Weather&nbsp;Alert","location='http://www.njha.com/conferencecntr/html/inclement.aspx'");
   mm_menu_njha_3.hideOnMouseOut=true;
   mm_menu_njha_3.menuBorder=1;
   mm_menu_njha_3.menuLiteBgColor='#ffffff';
   mm_menu_njha_3.menuBorderBgColor='#555555';
   mm_menu_njha_3.bgColor='#999999';
  window.mm_menu_njha_4 = new Menu("root",187,17,"Arial, Helvetica, sans-serif",11,"#ffffff","#99ff00","#0023ab","#0023ab","left","middle",3,0,1000,-5,7,true,true,true,0,false,true);
  mm_menu_njha_4.addMenuItem("Member&nbsp;Center&nbsp;&amp;&nbsp;Discussion&nbsp;Forums","location='http://www.njha.com/memberonly/'");
  mm_menu_njha_4.addMenuItem("Become&nbsp;a&nbsp;Registered&nbsp;Member","location='http://www.njha.com/memberonly/pub/join.aspx'");
  mm_menu_njha_4.addMenuItem("Discussion&nbsp;Forums/Listservs","location='http://www.njha.com/memberonly/pub/discussion.aspx'");
  mm_menu_njha_4.addMenuItem("Join&nbsp;NJHA","location='http://www.njha.com/AboutNJHA/memApplication.aspx'");
  mm_menu_njha_4.addMenuItem("Log&#8722;in/Log&#8722;out","location='http://www.njha.com/memberonly/LoginStatus.aspx'");
  mm_menu_njha_4.addMenuItem("Member&nbsp;Benefits","location='http://www.njha.com/AboutNJHA/join.aspx'");
  mm_menu_njha_4.addMenuItem("Membership&nbsp;Directory","location='http://www.njhadirectory.com'");
  mm_menu_njha_4.addMenuItem("My&nbsp;Member&nbsp;Page","location='http://www.njha.com/memberonly/general/'");
  mm_menu_njha_4.addMenuItem("NewsLink&nbsp;Today","location='http://www.newslinktoday.com'");
  mm_menu_njha_4.addMenuItem("Password&nbsp;HELP","location='http://www.njha.com/memberonly/pub/memberhelp.aspx'");
  mm_menu_njha_4.addMenuItem("Privacy&nbsp;&amp;&nbsp;Cookies","location='http://www.njha.com/memberonly/pub/privacy.aspx'");
  mm_menu_njha_4.addMenuItem("Sign&#8722;Up:&nbsp;Member&nbsp;Services","location='http://www.njha.com/memberonly/pub/join.aspx'");
  mm_menu_njha_4.addMenuItem("Update&nbsp;Your&nbsp;Profile","location='http://www.njha.com/memberonly/pub/infoupdate.aspx'");
   mm_menu_njha_4.hideOnMouseOut=true;
   mm_menu_njha_4.menuBorder=1;
   mm_menu_njha_4.menuLiteBgColor='#ffffff';
   mm_menu_njha_4.menuBorderBgColor='#555555';
   mm_menu_njha_4.bgColor='#999999';
  window.mm_menu_njha_5 = new Menu("root",160,17,"Arial, Helvetica, sans-serif",11,"#ffffff","#99ff00","#0023ab","#0023ab","left","middle",3,0,1000,-5,7,true,true,true,0,false,true);
  mm_menu_njha_5.addMenuItem("NewsLink&nbsp;&amp;&nbsp;Publications","location='http://www.njha.com/publications/index.aspx'");
  mm_menu_njha_5.addMenuItem("Annual&nbsp;Reports","location='http://www.njha.com/AboutNJHA/AnnualReports.aspx'");
  mm_menu_njha_5.addMenuItem("Catalog","location='http://www.njha.com/publications/pubresources.aspx'");
  mm_menu_njha_5.addMenuItem("Daily&nbsp;Message","location='http://www.njha.com/html/DailyMessage.aspx'");
  mm_menu_njha_5.addMenuItem("Lists&nbsp;&amp;&nbsp;Map&nbsp;N.J.&nbsp;Hospitals","location='http://www.njha.com/directories/index.aspx'");
  mm_menu_njha_5.addMenuItem("Membership&nbsp;Directory","location='http://www.njhadirectory.com'");
  mm_menu_njha_5.addMenuItem("NewsLink&nbsp;Today","location='http://www.newslinktoday.com'");
  mm_menu_njha_5.addMenuItem("President's&nbsp;Advertorial","location='http://www.njha.com/press/whatpresident.aspx'");
   mm_menu_njha_5.hideOnMouseOut=true;
   mm_menu_njha_5.menuBorder=1;
   mm_menu_njha_5.menuLiteBgColor='#ffffff';
   mm_menu_njha_5.menuBorderBgColor='#555555';
   mm_menu_njha_5.bgColor='#999999';
  window.mm_menu_njha_6 = new Menu("root",160,17,"Arial, Helvetica, sans-serif",11,"#ffffff","#99ff00","#0023ab","#0023ab","left","middle",3,0,1000,-5,7,true,true,true,0,false,true);
  mm_menu_njha_6.addMenuItem("Press&nbsp;Room","location='http://www.njha.com/press/index.aspx'");
  mm_menu_njha_6.addMenuItem("Podcast","window.open('http://www.njha.com/html/rss.aspx?id=4', '_blank')");
  mm_menu_njha_6.addMenuItem("Press&nbsp;Releases","location='http://www.njha.com/press/PressRelease.aspx'");
  mm_menu_njha_6.addMenuItem("President's&nbsp;Advertorial","location='http://www.njha.com/press/whatpresident.aspx'");
  mm_menu_njha_6.addMenuItem("Executive&nbsp;Bios","location='http://www.njha.com/press/ExecutiveBio.aspx'");
  mm_menu_njha_6.addMenuItem("NJHA&nbsp;In&nbsp;the&nbsp;News","location='http://www.njha.com/html/njhainnews.aspx'");
  mm_menu_njha_6.addMenuItem("Public&nbsp;Forum","location='http://www.njha.com/press/PublicForum.aspx'");
  mm_menu_njha_6.addMenuItem("Reports&nbsp;&amp;&nbsp;Resources&nbsp;for&nbsp;Media","location='http://www.njha.com/press/Reports.aspx'");
  mm_menu_njha_6.addMenuItem("RSS&nbsp;Feeds","location='http://www.njha.com/html/NJHARSS.aspx'");
   mm_menu_njha_6.hideOnMouseOut=true;
   mm_menu_njha_6.menuBorder=1;
   mm_menu_njha_6.menuLiteBgColor='#ffffff';
   mm_menu_njha_6.menuBorderBgColor='#555555';
   mm_menu_njha_6.bgColor='#999999';
  window.mm_menu_njha_7 = new Menu("root",170,17,"Arial, Helvetica, sans-serif",11,"#ffffff","#99ff00","#0023ab","#0023ab","left","middle",3,0,1000,-5,7,true,true,true,0,false,true);
   mm_menu_njha_7.addMenuItem("Government&nbsp;&amp;&nbsp;Legislative","location='http://www.njha.com/advocacy/'");
  mm_menu_njha_7.addMenuItem("Federal","location='http://www.njha.com/memberonly/advocacy/fedalert.aspx'");
  mm_menu_njha_7.addMenuItem("New&nbsp;Jersey","location='http://www.njha.com/memberonly/advocacy/njalert.aspx'");
  mm_menu_njha_7.addMenuItem("Continuing&nbsp;Care","location='http://www.njha.com/contcare/'");
  mm_menu_njha_7.addMenuItem("HIPAA","location='http://www.njha.com/hipaa_section/'");
  mm_menu_njha_7.addMenuItem("Managed&nbsp;Care","location='http://www.njha.com/managedcare/'");
  mm_menu_njha_7.addMenuItem("Medicare&nbsp;Managed&nbsp;Care","location='http://www.njha.com/memberonly/managedcare/content.aspx?cat=18'");
  mm_menu_njha_7.addMenuItem("Medicaid&nbsp;Managed&nbsp;Care","location='http://www.njha.com/memberonly/managedcare/content.aspx?cat=17'");
  mm_menu_njha_7.addMenuItem("Library&nbsp;Guide:&nbsp;Find&nbsp;Laws&nbsp;&amp;&nbsp;Regs","location='http://www.njha.com/librarysection/lib.lawsregs.aspx'");
   mm_menu_njha_7.hideOnMouseOut=true;
   mm_menu_njha_7.menuBorder=1;
   mm_menu_njha_7.menuLiteBgColor='#ffffff';
   mm_menu_njha_7.menuBorderBgColor='#555555';
   mm_menu_njha_7.bgColor='#999999';
  window.mm_menu_njha_8 = new Menu("root",168,17,"Arial, Helvetica, sans-serif",11,"#ffffff","#99ff00","#0023ab","#0023ab","left","middle",3,0,1000,-5,7,true,true,true,0,false,true);
  mm_menu_njha_8.addMenuItem("Healthcare&nbsp;Topics","location='http://www.njha.com/ps/'");
  mm_menu_njha_8.addMenuItem("Antimicrobial&nbsp;Resistance&nbsp;Initiative","location='http://www.njha.com/qualityinstitute/amri.aspx'");
  mm_menu_njha_8.addMenuItem("Cancer","location='http://www.njha.com/research/breastcancer.aspx'");
  mm_menu_njha_8.addMenuItem("Community&nbsp;Benefit","location='http://www.njha.com/research/outreachaward.aspx'");
  mm_menu_njha_8.addMenuItem("Consumer&nbsp;Health&nbsp;Information","location='http://www.njha.com/librarysection/consumers_resources.aspx'");
  mm_menu_njha_8.addMenuItem("Continuing&nbsp;Care","location='http://www.njha.com/contcare/'");
  mm_menu_njha_8.addMenuItem("Do&nbsp;Not&nbsp;Resuscitate","location='http://www.njha.com/ps/dnr.aspx'");
  mm_menu_njha_8.addMenuItem("Electronic&nbsp;Health&nbsp;Records","location='http://www.njha.com/ehealth/'");
  mm_menu_njha_8.addMenuItem("Emergency&nbsp;Preparedness","location='http://www.njha.com/ep/'");
  mm_menu_njha_8.addMenuItem("Governance/Trustees","location='http://www.njha.com/trustee/'");
  mm_menu_njha_8.addMenuItem("Heart&nbsp;Failure/NJHQI","location='http://www.njha.com/qualityinstitute/njhqi.aspx'");
  mm_menu_njha_8.addMenuItem("HIPAA","location='http://www.njha.com/hipaa_section/index.aspx'");
  mm_menu_njha_8.addMenuItem("Human&nbsp;Resources","location='http://www.njha.com/hr/'");
  mm_menu_njha_8.addMenuItem("Influenza&nbsp;Pandemic","location='http://www.njha.com/qualityinstitute/paninf.aspx'");
  mm_menu_njha_8.addMenuItem("Library&nbsp;&amp;&nbsp;Links","location='http://www.njha.com/librarysection/index.aspx'");
  mm_menu_njha_8.addMenuItem("Managed&nbsp;Care","location='http://www.njha.com/managedcare/'");
  mm_menu_njha_8.addMenuItem("Medicare&nbsp;Part&nbsp;D","location='http://www.njha.com/contcare/content.aspx?target=16'");
  mm_menu_njha_8.addMenuItem("Newborn&nbsp;Screening","location='http://www.njha.com/research/newbornedu.aspx'");
  mm_menu_njha_8.addMenuItem("Nursing&nbsp;&amp;&nbsp;Health&nbsp;Careers","location='http://www.njha.com/healthrecruitment/'");
  mm_menu_njha_8.addMenuItem("Organ&nbsp;Donation","location='http://www.njha.com/onit/'");
  mm_menu_njha_8.addMenuItem("Pressure&nbsp;Ulcer&nbsp;Collaborative","location='http://www.njha.com/qualityinstitute/ulcer.aspx'");
  mm_menu_njha_8.addMenuItem("Quality","location='http://www.njha.com/qualityinstitute/'");
  mm_menu_njha_8.addMenuItem("Race&nbsp;&amp;&nbsp;Ethnicity","location='http://www.njha.com/research/hospimprove.aspx'");
  mm_menu_njha_8.addMenuItem("Rapid&nbsp;Response&nbsp;Teams","location='http://www.njha.com/qualityinstitute/rrt.aspx'");
  mm_menu_njha_8.addMenuItem("Research","location='http://www.njha.com/research/'");
  mm_menu_njha_8.addMenuItem("Volunteering/Auxilians","location='http://www.njha.com/auxilians/'");
   mm_menu_njha_8.hideOnMouseOut=true;
   mm_menu_njha_8.menuBorder=1;
   mm_menu_njha_8.menuLiteBgColor='#ffffff';
   mm_menu_njha_8.menuBorderBgColor='#555555';
   mm_menu_njha_8.bgColor='#999999';
  window.mm_menu_njha_9 = new Menu("root",160,17,"Arial, Helvetica, sans-serif",11,"#fff","#99ff00","#0023ab","#0023ab","left","middle",3,0,1000,-5,7,true,true,true,0,false,true);
 mm_menu_njha_9.addMenuItem("About&nbsp;NJHA&nbsp;&amp;&nbsp;N.J.&nbsp;Hospitals","location='http://www.njha.com/AboutNJHA/index.aspx'");
  mm_menu_njha_9.addMenuItem("Lists&nbsp;&amp;&nbsp;Map&nbsp;N.J.&nbsp;Hospitals","location='http://www.njha.com/directories/index.aspx'");
  mm_menu_njha_9.addMenuItem("Affiliates","location='http://www.njha.com/AboutNJHA/NJHAAffiliates.aspx'");
  mm_menu_njha_9.addMenuItem("Annual&nbsp;&amp;&nbsp;Special&nbsp;Meetings","location='http://www.njha.com/AboutNJHA/AnnualMeetings.aspx'");
  mm_menu_njha_9.addMenuItem("Annual&nbsp;Reports","location='http://www.njha.com/AboutNJHA/AnnualReports.aspx'");
  mm_menu_njha_9.addMenuItem("Board&nbsp;of&nbsp;Directors","location='http://www.njha.com/Template/TrusteesBoard.aspx'");
  mm_menu_njha_9.addMenuItem("Calendars","location='http://www.njha.com/AboutNJHA/Calendars.aspx'");
  mm_menu_njha_9.addMenuItem("Contact&nbsp;Us","location='http://www.njha.com/AboutNJHA/ContactUs.aspx'");
  mm_menu_njha_9.addMenuItem("Credit&nbsp;Union","location='http://www.njha.com/ps/creditunion.aspx'");
  mm_menu_njha_9.addMenuItem("Daily&nbsp;Message","location='http://www.njha.com/html/DailyMessage.aspx'");
  mm_menu_njha_9.addMenuItem("Directions","location='http://www.njha.com/conferencecntr/html/mc.directions.aspx'");
  mm_menu_njha_9.addMenuItem("Health&nbsp;Research&nbsp;&amp;&nbsp;Ed&nbsp;Trust","location='http://www.njha.com/hret/'");
  mm_menu_njha_9.addMenuItem("Jobs&nbsp;at&nbsp;NJHA","location='http://www.jobscience.com/index.cfm?idset=1051,njha0002'");
  mm_menu_njha_9.addMenuItem("Membership&nbsp;Directory","location='http://www.njhadirectory.com'");
  mm_menu_njha_9.addMenuItem("Membership&nbsp;Join&nbsp;NJHA","location='http://www.njha.com/AboutNJHA/Join.aspx'");
  mm_menu_njha_9.addMenuItem("NJHA&nbsp;In&nbsp;the&nbsp;News","location='http://www.njha.com/html/njhainnews.aspx'");
  mm_menu_njha_9.addMenuItem("ONE/NJ","location='http://www.njha.com/onenj/index.aspx'");
  mm_menu_njha_9.addMenuItem("Policy&nbsp;Development","location='http://www.njha.com/policy/index.aspx'");
  mm_menu_njha_9.addMenuItem("RSS&nbsp;Feeds","location='http://www.njha.com/html/NJHARSS.aspx'");
  mm_menu_njha_9.addMenuItem("RWJF&nbsp;Local&nbsp;Initiatives","location='http://www.njha.com/hret/rwjf.aspx'");
  mm_menu_njha_9.addMenuItem("My&nbsp;Hospital&nbsp;Story","location='http://www.myhospitalstory.com'");
  mm_menu_njha_9.addMenuItem("Staff,&nbsp;Executives","location='http://www.njha.com/Template/ExecutiveStaff.aspx'");
  mm_menu_njha_9.addMenuItem("What's&nbsp;New","location='http://www.njha.com/html/index.aspx'");
   mm_menu_njha_9.hideOnMouseOut=true;
   mm_menu_njha_9.menuBorder=1;
   mm_menu_njha_9.menuLiteBgColor='#ffffff';
   mm_menu_njha_9.menuBorderBgColor='#555555';
   mm_menu_njha_9.bgColor='#999999';
   
 window.mm_menu_njha_10 = new Menu("root",210,17,"Arial, Helvetica, sans-serif",11,"#fff","#99ff00","#0023ab","#0023ab","left","middle",3,0,1000,-5,7,true,true,true,0,false,true);
 mm_menu_njha_10.addMenuItem("My&nbsp;Hospital&nbsp;Story","location='http://www.njha.com/story.aspx'");
  mm_menu_njha_10.addMenuItem("N.J.&nbsp;Hospital&nbsp;Care&nbsp;Compare","location='http://www.njhospitalcarecompare.com'");
  mm_menu_njha_10.addMenuItem("N.J.&nbsp;Hospital&nbsp;Price&nbsp;Compare","location='http://www.njhospitalpricecompare.com'");
  mm_menu_njha_10.addMenuItem("Breast&nbsp;Cancer&nbsp;Awareness","location='http://www.njha.com/research/earlydetection.aspx'");
  mm_menu_njha_10.addMenuItem("Bring&nbsp;Your&nbsp;Baby&nbsp;Back","location='http://www.njha.com/research/bringbabyback.aspx'");
  mm_menu_njha_10.addMenuItem("Continuing&nbsp;Care","location='http://www.njha.com/contcare/content.aspx?target=3'");
  mm_menu_njha_10.addMenuItem("Hotlines","location='http://www.njha.com/librarysection/consumers_resources.aspx#hotline'");
  mm_menu_njha_10.addMenuItem("Library&nbsp;&amp;&nbsp;Links","location='http://www.njha.com/librarysection/consumers_resources.aspx'");
  mm_menu_njha_10.addMenuItem("List&nbsp;&amp;&nbsp;Map&nbsp;of&nbsp;N.J.&nbsp;Hospitals","location='http://www.njha.com/directories/index.aspx'");
  mm_menu_njha_10.addMenuItem("Mammography&nbsp;Directory","location='http://www.njha.com/research/bclist.aspx'");
  mm_menu_njha_10.addMenuItem("Medical&nbsp;Records","location='http://www.njha.com/librarysection/faq.aspx'");
  mm_menu_njha_10.addMenuItem("Medication&nbsp;Safety","location='http://www.njha.com/qualityinstitute/yourhealthcare.aspx'");
  mm_menu_njha_10.addMenuItem("N.J.&nbsp;Catastrophic&nbsp;Illness&nbsp;Child&nbsp;Relief&nbsp;Fund","location='http://www.njha.com/ps/catastrophicfund.aspx'");
  mm_menu_njha_10.addMenuItem("Organ&nbsp;Donation","location='http://www.njha.com/onit/content.aspx?cat=6'");
  mm_menu_njha_10.addMenuItem("Parenting&nbsp;Education","location='http://www.njha.com/research/parentingedu.aspx'");
   mm_menu_njha_10.hideOnMouseOut=true;
   mm_menu_njha_10.menuBorder=1;
   mm_menu_njha_10.menuLiteBgColor='#ffffff';
   mm_menu_njha_10.menuBorderBgColor='#555555';
   mm_menu_njha_10.bgColor='#999999';
  mm_menu_njha_10.writeMenus();
} // mmLoadMenus()
// -->