



function wfPhoto(url, width, height)
{
  this.url = url;
  this.width = width;
  this.height = height;
}

function wfSPOD(nickname, quote, link, photoUrl, photoWidth, photoHeight, profileLink)
{
  this.nickname = nickname;
  this.quote = quote;
  this.link = link;
  this.photo = new wfPhoto(photoUrl, photoWidth, photoHeight);
  this.profileLink = profileLink;
}

var wfSPODArray = new Array();



wfSPODArray[0] =
    new wfSPOD('riot709',
               'I would eventually like to travel somewhere else..',
               'http://eupedia.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2008/02/06/spod.6476.jpg',
               120, 
               120,
               'http://eupedia.worldfriends.tv/public/browse.jhtml?action=profile&profileId=1722497');

wfSPODArray[1] =
    new wfSPOD('nina43',
               'I\&#039;m an easy going person, down to earth and who loves to have fun\u00A0.',
               'http://eupedia.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/11/27/spod.6246.jpg',
               120, 
               120,
               'http://eupedia.worldfriends.tv/public/browse.jhtml?action=profile&profileId=1612816');

wfSPODArray[2] =
    new wfSPOD('ingurita',
               'Funny! (^_^ )',
               'http://eupedia.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/05/11/spod.4895.jpg',
               120, 
               120,
               'http://eupedia.worldfriends.tv/public/browse.jhtml?action=profile&profileId=1263863');



