



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('takanobusan',
               'don\&#039;t be hurry because life is short',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8039.jpg',
               120, 
               120,
               'http://friends.japaneselearning.com/public/browse.jhtml?action=profile&profileId=2637030');

wfSPODArray[1] =
    new wfSPOD('NOBU220',
               'Let\&#039;s play and laugh together',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/12/14/spod.6329.jpg',
               120, 
               120,
               'http://friends.japaneselearning.com/public/browse.jhtml?action=profile&profileId=1632739');

wfSPODArray[2] =
    new wfSPOD('maymay0409',
               'Hey, Nice to meet you \u2606 I want some new friends.',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/07/02/spod.5092.jpg',
               120, 
               120,
               'http://friends.japaneselearning.com/public/browse.jhtml?action=profile&profileId=726453');

wfSPODArray[3] =
    new wfSPOD('DJm0927',
               'Music is my love. particularly hiphop and punk.',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/02/19/spod.6509.jpg',
               120, 
               120,
               'http://friends.japaneselearning.com/public/browse.jhtml?action=profile&profileId=1754808');

wfSPODArray[4] =
    new wfSPOD('kazumi0722',
               'I like a guy who can play some music instrunents and never say \&#034;I love all Japanese girls\&#034;.',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/01/29/spod.6457.jpg',
               120, 
               120,
               'http://friends.japaneselearning.com/public/browse.jhtml?action=profile&profileId=865415');

wfSPODArray[5] =
    new wfSPOD('vp0127',
               'I wannna make friends around the world:D',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/06/22/spod.5050.jpg',
               120, 
               120,
               'http://friends.japaneselearning.com/public/browse.jhtml?action=profile&profileId=329825');



