



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('movinginstereo',
               'I love music. I play bass in a band, and we\&#039;re awesome.',
               'http://eupedia.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2008/12/04/spod.7259.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('Asasello',
               'One thing I would like to mention: I\&#039;m well educated and have a large range of interests\u3002',
               'http://eupedia.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2009/02/18/spod.7333.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('justinnnn',
               'I love to travel and have been many places.',
               'http://eupedia.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8037.jpg',
               120, 120);



