



function wfPhoto(url, width, height)
{
  this.url = url;
  this.width = width;
  this.height = height;
}

function wfSPOD(nickname, quote, link, photoUrl, photoWidth, photoHeight)
{
  this.nickname = nickname;
  this.quote = quote;
  this.link = link;
  this.photo = new wfPhoto(photoUrl, photoWidth, photoHeight);
}

var wfSPODArray = new Array();



wfSPODArray[0] =
    new wfSPOD('minmin36',
               'I want to study English.Please help me!',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/26/spod.5851.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('yuri_0619',
               'A person of a christian please become my friend.',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/27/spod.5564.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('sofiepink',
               'Friends say I\&#039;m innocent,crazy,amusing.',
               'http://friends.japaneselearning.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/02/06/spod.6483.jpg',
               120, 120);



