



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('sakurazakari',
               'I love travel, please send me a mail!!',
               'http://japanprobe.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2009/08/24/spod.7718.jpg',
               120, 
               120,
               'http://japanprobe.worldfriends.tv/public/browse.jhtml?action=profile&profileId=2431356');

wfSPODArray[1] =
    new wfSPOD('lavandura',
               'Please be my friend,if you can speak English or Spanish, and little Japanese.',
               'http://japanprobe.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2006/10/26/spod.4475.jpg',
               120, 
               120,
               'http://japanprobe.worldfriends.tv/public/browse.jhtml?action=profile&profileId=925292');

wfSPODArray[2] =
    new wfSPOD('NOBU220',
               'Let\&#039;s play and laugh together',
               'http://japanprobe.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/12/14/spod.6329.jpg',
               120, 
               120,
               'http://japanprobe.worldfriends.tv/public/browse.jhtml?action=profile&profileId=1632739');



