



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('keibowbow',
               'My English is not good.please make my friends if you like ^-^',
               'http://friends.chinese-outpost.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/09/07/spod.7733.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('shyla520',
               'To us love is full of hopes, but ...',
               'http://friends.chinese-outpost.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/12/11/spod.7864.jpg',
               120, 120);



