



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('zencuts',
               'Music is my \&#034; Savior \&#034;',
               'http://japanprobe.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/01/spod.5340.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('minmin36',
               'I want to study English.Please help me!',
               'http://japanprobe.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/26/spod.5851.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('cherrypetals',
               'I want to do so many things but especially now...',
               'http://japanprobe.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2008/02/14/spod.6489.jpg',
               120, 120);



