

 <!-- Begin CDATA Tag -->

//get parameter at the end of the url and pass to subnav display item.
function menuList(navItem)
{
	var returnValue = menu_ds(navItem);
	na_call( returnValue );
}
var vName = null;
if (location.search.length > 0)
    vName = location.search.substring(1);


var ns6=document.getElementById&&!document.all
var ie4=document.all&&navigator.userAgent.indexOf("Opera")==-1


//display toggel  for arrow/down arrow and sub navigation
function menu_ds(target)
{
	if( pageName == "welcome.htm" ) {
		return;
	}

	var whichArrow;
	var divitem;
	whichArrow = "arrow" + (vName.substr(12,2));

	var idName = target.substr( 6,8 );

  if (ie4)
  {
		menuitem = eval("document.all." + idName );
		divitem =  menuitem.innerHTML;
	}
	else
	{
		menuitem = document.getElementById( idName );
		divitem =  menuitem.innerHTML;
	}

	if(divitem!="")
	{
			imageHandle = eval( "document.images." + whichArrow );
			imageHandle.src = '../staticpages/images/common/downarrow.gif';

	}

		if (menuitem.style.display == "block")
		{
			menuitem.style.display = "none";
		}
		else
		{
			menuitem.style.display = "block";
		}

}

//pass parameter to menuList funtion at top of the page
function na_call(str)
{
  eval(str);
}


pageName='';
refname='';

function readPageName()
{
  var locationBar = document.location.href;


  if(locationBar.indexOf("/")!= -1)
      {
        if((locationBar.indexOf("?"))== -1)
        {
          pageName = locationBar.substring(locationBar.lastIndexOf("/")+1,locationBar.length);
        }
        else
        {
          pageName = locationBar.substring(locationBar.lastIndexOf("/")+1,locationBar.indexOf("?"));
        }

      }
}

function readRefName()
{

  var ref_doc = document.referrer;

  if(ref_doc .indexOf("/")!= -1)
      {
        if((ref_doc .indexOf("?"))== -1)
        {
          refname = ref_doc.substring(ref_doc.lastIndexOf("/")+1,ref_doc.length);
        }
        else
        {
          refname = ref_doc.substring(ref_doc.lastIndexOf("/")+1,ref_doc.indexOf("?"));
        }

      }

}

readPageName();

if (pageName == 'claims.htm')
{
  readRefName()
  pageName = refname;
}

var str= '';

str +='<table cellspacing="0" cellpadding="0" border="0" width="192">';
str +='<tr>';
str +='    <td colspan="3"><img src="../staticpages/images/common/border.gif" alt="0" border="0" height="1" width="191"></td>';
str +='</tr>';


    str +='<tr>';
    str +='    <td align="center" height="15" valign="top" width="10" class="arrow"><img src="../staticpages/images/common/arrow.gif" name="arrow0" ></td>';
    str +='    <td colspan="2"height="20" width="181"> <p class="';
    str += (pageName == 'welcome.htm')?'txtNavigationLive':'txtNavigationNonLive';
    str +='"><a href="welcome.htm?vName=subNav0"';
    str +=' target="_self"  class="';
    str += (pageName == 'welcome.htm')?'txtNavigationLive':'txtNavigationNonLive';
    str +='" size="1">Loans</a></p><div id="subNav0">';

      


    str +='</div></td></tr>';
    //str +='   <tr><td width="10" ><img src="/staticpages/images/common/spacer.gif" alt="0" border="0" height="1" width="3"></td>';
    //str +='   <td colspan="2" ><img src="../staticpages/images/common/border.gif" alt="0" border="0" height="1" width="181"></td></tr>';
    str +='';
  


    <!-- blank (space) menu item -->
    str +='<tr>';
    str +='<td align="center" height="15"><img src="/staticpages/images/common/spacer.gif" width="3" height="6"></td>';
    str +='<td colspan="2" bgcolor="#ffffff" height="20">&nbsp;</td>';
    str +='</tr>';
    str +='<tr>';
    str +='<td width="10" ><img src="/staticpages/images/common/spacer.gif" alt="0" border="0" height="1" width="3"></td>';
    str +='<td colspan="2"><img src="../staticpages/images/common/border.gif" alt="0" border="0" height="1" width="181"></td>';
    str +='</tr>';
  


    str +='<tr>';
    str +='    <td align="center" height="15" valign="top" width="10" class="arrow"><img src="../staticpages/images/common/arrow.gif" name="arrow2" ></td>';
    str +='    <td colspan="2"height="20" width="181"> <p class="';
    str += (pageName == 'javascript:openWin();')?'txtNavigationLive':'txtNavigationNonLive';
    str +='"><a href="javascript:openWin(); "';
    str +=' target="_self"  class="';
    str += (pageName == 'javascript:openWin();')?'txtNavigationLive':'txtNavigationNonLive';
    str +='" size="1">Ask us a question</a></p><div id="subNav2">';

      


    str +='</div></td></tr>';
    //str +='   <tr><td width="10" ><img src="/staticpages/images/common/spacer.gif" alt="0" border="0" height="1" width="3"></td>';
    //str +='   <td colspan="2" ><img src="../staticpages/images/common/border.gif" alt="0" border="0" height="1" width="181"></td></tr>';
    str +='';
  



str += '</table>';




document.write (str);

if (vName != null) {
  menuList(vName);
}


     <!-- End CDATA tag -->



 