



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('naopoppo1013',
               'I can teach Japanese if you want it. Let\&#039;s be friends!!',
               'http://beijingmadeeasy.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/05/spod.8156.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('Mitukin',
               'Hi all! trying hard over English and French',
               'http://beijingmadeeasy.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8172.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('ji_unite',
               'Everybody will be my friend ! so Let\&#039;s talk!!!',
               'http://beijingmadeeasy.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/11/27/spod.6245.jpg',
               120, 120);



