



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('robotaro',
               'Enjoy different cultures, talk with lots of people',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/09/11/spod.7744.jpg',
               120, 
               120,
               'http://friends.stippy.com/public/browse.jhtml?action=profile&profileId=2471826');

wfSPODArray[1] =
    new wfSPOD('nobunobu0725',
               'I want to make friends with people who speak Romanian.',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/09/07/spod.7732.jpg',
               120, 
               120,
               'http://friends.stippy.com/public/browse.jhtml?action=profile&profileId=2473982');

wfSPODArray[2] =
    new wfSPOD('tsubame0329',
               'My hobby is capoeira, let\&#039;s stimulate each other!',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/11/spod.5755.jpg',
               120, 
               120,
               'http://friends.stippy.com/public/browse.jhtml?action=profile&profileId=1473957');

wfSPODArray[3] =
    new wfSPOD('xxMermaidxx',
               'I wanna know The meaning to love...',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/01/29/spod.6454.jpg',
               120, 
               120,
               'http://friends.stippy.com/public/browse.jhtml?action=profile&profileId=1370379');

wfSPODArray[4] =
    new wfSPOD('Rumi7',
               'I love the smell after rain.',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/01/24/spod.6451.jpg',
               120, 
               120,
               'http://friends.stippy.com/public/browse.jhtml?action=profile&profileId=1334227');

wfSPODArray[5] =
    new wfSPOD('pinkshinepink',
               'It\&#039;s fantastic when I go to the disneyland.',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/01/24/spod.6448.jpg',
               120, 
               120,
               'http://friends.stippy.com/public/browse.jhtml?action=profile&profileId=1086960');



