



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('sakurai90',
               'lets be friends from all over the world , peace and love !!',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8255.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('tama20071003',
               'Hi how are you??',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8208.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('aromax',
               'Please make friends\u2606 I want to learn English!',
               'http://friends.babibubebo.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8214.jpg',
               120, 120);



