// This is were we put the feature's content
// It will display in a bar under the menu
function writeFeature()
{
  document.write('<tr>');
  document.write('<td colspan="3" align="center" class="FeatureBar">');
  document.write('<table border=0><tr>');
  document.write('<td align="right" width="275px">');
  // Change the content you want to include below here:
  document.write('Come meet HELP\'s featured Cat:<br>');
  document.write('<a href="http://www.petfinder.org/~IN135/FeaturedCat.html">The always cute and playful Sofi!</a>');
  document.write('</td>');
  document.write('<td alight="left" width="120px">');
  document.write('<a href="http://www.petfinder.org/~IN135/FeaturedCat.html">');
  document.write('<img border=0 align="left" src="http://members.petfinder.com/~IN135/images/Featured_Cat_Thumbnail.jpg">');
  document.write('</a>');

  document.write('</td>');
  document.write('<td align="left" width="2px">');
  document.write('<img border=0 width="2px" height="60px" src="http://members.petfinder.com/~IN135/images/grad2.png">');
  document.write('</td>');
  document.write('<td align="right" width="278px">');

  document.write('Come meet HELP\'s featured Dog:<br>');
  document.write('<a href="http://www.petfinder.org/~IN135/FeaturedDog.html">The loveable and loving Myrna!</a>');
  document.write('</td>');
  document.write('<td alight="left" width="125px">');
  document.write('<a href="http://www.petfinder.org/~IN135/FeaturedDog.html">');
  document.write('<img border=0 align="left" src="http://members.petfinder.com/~IN135/images/Featured_Dog_Thumbnail.jpg">');
  document.write('</a>');
  // Custom content ends here
  document.write('</td></tr></table>');
  document.write('</td>');
  document.write('</tr>');
}

// Comment/Uncomment this next line to hide/display the feature
writeFeature();
