



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('Mitukin',
               'Hi all! trying hard over English and French',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8172.jpg',
               120, 
               120,
               'http://friends.japan-japanese.info/public/browse.jhtml?action=profile&profileId=1830410');

wfSPODArray[1] =
    new wfSPOD('satori_x',
               'Hi! I am an easygoing, weird, fun, smart, shy girl who wishes to find new friends out in the world.',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8310.jpg',
               120, 
               120,
               'http://friends.japan-japanese.info/public/browse.jhtml?action=profile&profileId=929464');

wfSPODArray[2] =
    new wfSPOD('iRyan',
               'I only know a little japanese but want to learn more.',
               'http://friends.japan-japanese.info/',
               
               
               'http://images.worldfriends.tv/photos/2009/04/17/spod.7513.jpg',
               120, 
               120,
               'http://friends.japan-japanese.info/public/browse.jhtml?action=profile&profileId=492956');



