function showmen(url)  
{ 

var PageArray = [];
var RefArray = [];

PageArray[0] = 'Our Philosophy';
RefArray[0] = 'philosophy.shtml';

PageArray[1] = 'About the Doctor';
RefArray[1] = 'about_doc.shtml';

PageArray[2] = 'Office Info';
RefArray[2] = 'office_info.shtml';

PageArray[3] = 'Insurance';
RefArray[3] = 'insurance.shtml';

PageArray[4] = 'Hospitals';
RefArray[4] = 'affiliations.shtml';

PageArray[5] = 'Class &amp; Education';
RefArray[5] = 'parent_education.shtml';

PageArray[6] = 'Contact Us';
RefArray[6] = 'location.shtml';



// Do not edit below this line

document.write("<ul>");

for (i=0;i<PageArray.length;i++)
{
document.write("<li><a title='' href='");
document.write(RefArray[i]);
document.write("' ");
if(url==RefArray[i]){ document.write("class='current'"); }
document.write(">");
document.write(PageArray[i]);
document.write("</a></li>");
}

document.write("</ul>");

}
