



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('elliehaas',
               '^^',
               'http://nihonmura.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8326.jpg',
               120, 
               120,
               'http://nihonmura.worldfriends.tv/public/browse.jhtml?action=profile&profileId=2906492');

wfSPODArray[1] =
    new wfSPOD('sara_86',
               'I\&#039;m a funny,positive,sensitive,passionate and crazy girl looking for friends all over the world :)',
               'http://nihonmura.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8236.jpg',
               120, 
               120,
               'http://nihonmura.worldfriends.tv/public/browse.jhtml?action=profile&profileId=2352205');



