



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('kazumi0722',
               'I like a guy who can play some music instrunents and never say \&#034;I love all Japanese girls\&#034;.',
               'http://friends.tokyotimes.org/',
               
               
               'http://images.worldfriends.tv/photos/2008/01/29/spod.6457.jpg',
               120, 
               120,
               'http://friends.tokyotimes.org/public/browse.jhtml?action=profile&profileId=865415');

wfSPODArray[1] =
    new wfSPOD('takanobusan',
               'don\&#039;t be hurry because life is short',
               'http://friends.tokyotimes.org/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8039.jpg',
               120, 
               120,
               'http://friends.tokyotimes.org/public/browse.jhtml?action=profile&profileId=2637030');

wfSPODArray[2] =
    new wfSPOD('NOBU220',
               'Let\&#039;s play and laugh together',
               'http://friends.tokyotimes.org/',
               
               
               'http://images.worldfriends.tv/photos/2007/12/14/spod.6329.jpg',
               120, 
               120,
               'http://friends.tokyotimes.org/public/browse.jhtml?action=profile&profileId=1632739');



