



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.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/26/spod.5851.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('wolfling51',
               'I want to know more people all over the world.',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/29/spod.5871.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('Tracyfeifei',
               'I think life is a test and a trust.',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/10/08/spod.5932.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('tamahomeca',
               'Now in china for business...miss the old times and want to meet some new friends in my life~',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/03/07/spod.6550.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('yumi_bnt',
               'I am a very friendly (but shy at first) , optimistic, sincere, and tender-hearted person.',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/05/12/spod.6707.jpg',
               120, 120);



