function SelectPet()     {
var language = location.href.substring(location.href.lastIndexOf('.')-3,location.href.lastIndexOf('.'));
var PetUrl = new Array();
var PetTxt = new Array();

PetUrl[0] = 'Services/RescuePets/Pet1.jpg';
PetUrl[1] = 'Services/RescuePets/Pet2.jpg';

if (language == "_NL") {
PetTxt[0] = 'Deze lieve hond is aan komen lopen. Zij heeft  ruimte nodig om te rennen. Het is een Andalusiasche hond van ongeveer 10 maanden, erg lief en kan goed met andere honden. Interesse? Bel Arend of Denise op 637771087.';
PetTxt[1] = 'We vonden deze puppy van slechts 5 weken langs de autoweg. Hij heeft nu onderdak bij ons, maar we zoeken een nieuw thuis voor hem. Hij is erg lief en heel erg nieuwsgierig. Interesse? Bel Arend of Denise op 637771087.';
}

else if (language == "_DE") {
PetTxt[0] = 'We found this lovely dog in front of our house. This dog needs enough space for running etc. It is a Andalusian dog of about 10 months, very sweet and very good with other dogs. Interested? Please call Arend or Denise at 637771087.';
PetTxt[1] = 'We found a little puppy of only 5 weeks on the highway. At this moment it stays with us, but we are looking for a new home for it. He is very sweet and very curious about everthing. Interested? Please call Arend or Denise at 637771087.';
}

else {
PetTxt[0] = 'We found this lovely dog in front of our house. This dog needs enough space for running etc. It is a Andalusian dog of about 10 months, very sweet and very good with other dogs. Interested? Please call Arend or Denise at 637771087.';
PetTxt[1] = 'We found a little puppy of only 5 weeks on the highway. At this moment it stays with us, but we are looking for a new home for it. He is very sweet and very curious about everthing. Interested? Please call Arend or Denise at 637771087.';
}

var whichPet = Math.floor(Math.random()*PetUrl.length);
document.write('<img src="' + PetUrl[whichPet] + '" width="147" height="98" hspace="2" vspace="2" align="right">' + PetTxt[whichPet]);
}