<!-- //

function addMenuItem(name, alink, header)
{
	document.write('    <tr> ');
	document.write('      <td width="100%" height="18" class="Menuanimalcontrol" onMouseOver="MM_timelineStop(\'MENUOFF\')" onMouseOut="MM_timelinePlay(\'MENUOFF\');MM_timelineGoto(\'MENUOFF\',\'1\')"> ');
	if (header)
	{
		document.write('        <a style="width:100%" href="'+alink+'"><strong>'+name+'</strong></a></td>');
	}
	else
	{
		document.write('		<a style="width:100%;text-indent: .5em;" href="'+alink+'">'+name+'</a></td>');
	}
	document.write('    </tr>');
}

document.write('  <table width="100%" border="0" cellpadding="1" cellspacing="1"  bgcolor="#FFFFFF">');
addMenuItem("Photo Gallery","../animal/photogallery.html",true);
	addMenuItem("Dog Photos","../animal/dogphotos.html",false);
	addMenuItem("Cat Photo","../animal/catphotos.html",false);
addMenuItem("Animal Codes","../animal/animalcodes.html",true);
	addMenuItem("Leash Laws","../animal/leashlaws.html",false);
	addMenuItem("Vicious","../animal/vicious.html",false);
	addMenuItem("Cleaning Up Feces","../animal/cleaningupfeces.html",false);
addMenuItem("Adoptions/Shelter","../animal/adoptioSns.html",true);
	addMenuItem("Information","../animal/information.html",false);
	addMenuItem("Success Stories","../animal/successstories.html",false);
	addMenuItem("Participating Veterinarians","../animal/vets.html",false);
addMenuItem("Lost/Found Pets","../animal/lostpets.html",true);
addMenuItem("Animal FAQs","../animal/FAQs.html",true);
document.write('  </table>');
//-->