



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('lunabunny',
               'Here I am! Talk to me!',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/14/spod.7985.jpg',
               120, 
               120,
               'http://friends.babibubebo.com/public/browse.jhtml?action=profile&profileId=799456');

wfSPODArray[1] =
    new wfSPOD('wakusei33',
               'I like travel.',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8018.jpg',
               120, 
               120,
               'http://friends.babibubebo.com/public/browse.jhtml?action=profile&profileId=2632831');

wfSPODArray[2] =
    new wfSPOD('balancegyj',
               'Never cast away!! Never give up!!!',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/06/13/spod.6780.jpg',
               120, 
               120,
               'http://friends.babibubebo.com/public/browse.jhtml?action=profile&profileId=1878688');

wfSPODArray[3] =
    new wfSPOD('kokoshka',
               'I would love to meet new people from all over the world!',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/05/08/spod.6699.jpg',
               120, 
               120,
               'http://friends.babibubebo.com/public/browse.jhtml?action=profile&profileId=1832738');

wfSPODArray[4] =
    new wfSPOD('yoshikok',
               'I just wanna be nice person\&#039;s friend that I can trust',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/11/06/spod.6114.jpg',
               120, 
               120,
               'http://friends.babibubebo.com/public/browse.jhtml?action=profile&profileId=141078');



