



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('nature_water',
               'First love is only a little foolishness and a lot of curiosity.',
               'http://nihonmura.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/28/spod.5579.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('Pucha_21',
               'Sometime I like to act like a little child. I love to collecting cute things .....',
               'http://nihonmura.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/07/30/spod.5257.jpg',
               120, 120);



