function load()
{
   return showPic(this)
}

function showPic (whichpic) { 
	if (document.getElementById) { 
		document.getElementById('placeholder').src = whichpic.href; 
	   switch(whichpic.id)
      {
      case "1":
        document.getElementById('petowner').childNodes[0].nodeValue = "Owner: Amy Richardson";
		  document.getElementById('petdesc').childNodes[0].nodeValue = "Impish and secretive, Bebe and Zoe are always together, planning the next escapade.  While nothing is ever quite their fault, chaos follows them wherever they go - a fact which truly confuses them.";
        break    
      case "2":
		  document.getElementById('petowner').childNodes[0].nodeValue = "Owner: Reed Badersnider";
		  document.getElementById('petdesc').childNodes[0].nodeValue = "The king of all he surveys, 14-year old Buddy never shows his age or reveals his secrets.  Sweet with a touch of rascal, he is the apple of everyone's eye and gets to do just about anything he pleases.";
        break
      case "3":
		  document.getElementById('petowner').childNodes[0].nodeValue = "Owner: Iacolucci Family";
		  document.getElementById('petdesc').childNodes[0].nodeValue = "Known in dog circles as a guy's guy, Burt is wise beyond his years.  Born with an understanding of the world around him,  even older dogs take time to stop and shoot the breeze with him whenever they see him. ";
        break
      case "4":
		  document.getElementById('petowner').childNodes[0].nodeValue = "Owner: Wendy and Eric Risch";
		  document.getElementById('petdesc').childNodes[0].nodeValue = "Trained in the art of the innocent look, Gaylie and Synthie enjoy tag-teaming owner Wendy Risch but never let on how they do it.  Cuddly and sublime, they long for hot days, cool nights and a tall bowl of water.";
        break
      case "5":
		  document.getElementById('petowner').childNodes[0].nodeValue = "Owner: Lynn Gates";
		  document.getElementById('petdesc').childNodes[0].nodeValue = "A lover with a mind of her own, Mazy's eyes tell it all.  Sweet and sassy, she has all the right dog moves and a few human ones, too.  Known for her kind intelligience, she's also a wicked ball catcher.";
        break    
      case "6":
		  document.getElementById('petowner').childNodes[0].nodeValue = "Owner: Hawkins Family";
		  document.getElementById('petdesc').childNodes[0].nodeValue = "Milo is a saint and takes everything kitty dishes out with a good-humored grain of salt.  Known for his fine lines and uncommon beauty, he is never vain and always generous.";
        break
      case "7":
		  document.getElementById('petowner').childNodes[0].nodeValue = "Owner: Lew McCormick";
		  document.getElementById('petdesc').childNodes[0].nodeValue = "Home is where the lap is for 14-month old Palmer and owner, Lew McCormick and nothing makes him happier than scraps from a home-cooked meal  and  a stolen snooze on the bed. ";
        break
      case "8":
		  document.getElementById('petowner').childNodes[0].nodeValue = "Owner: Betty Campbell";
		  document.getElementById('petdesc').childNodes[0].nodeValue = "Samantha 'the boss' knows how to make up her own mind and doesn't like to take direction unless she ABSOLUTELY has to.  Always ready with a good idea, she is known for her good nature and winning ways.";
        break
      default:
		  document.getElementById('petowner').childNodes[0].nodeValue = "&nbsp;";
		  document.getElementById('petdesc').childNodes[0].nodeValue = "&nbsp;";
      } 
		if (whichpic.title) { 
			document.getElementById('desc').childNodes[0].nodeValue = whichpic.title; 
		} else { 
			document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; 
		} 
		return false; 
	} else { 
		return true; 
	}

}
