



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');



