



function wfPhoto(url, width, height)
{
  this.url = url;
  this.width = width;
  this.height = height;
}

function wfSPOD(nickname, quote, link, photoUrl, photoWidth, photoHeight)
{
  this.nickname = nickname;
  this.quote = quote;
  this.link = link;
  this.photo = new wfPhoto(photoUrl, photoWidth, photoHeight);
}

var wfSPODArray = new Array();



wfSPODArray[0] =
    new wfSPOD('Vakteria',
               'I\&#039;m looking for people all over the world (even extra terrestrials) to share my friendship with!',
               'http://friends.getyourfriend.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/01/16/spod.7306.jpg',
               120, 120);



