



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('hiromi1127',
               'Nice to meet you!',
               'http://friends.japanichiban.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8316.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('busihakokou',
               'The wolf live, and the pig die, and but have the mercy',
               'http://friends.japanichiban.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/11/08/spod.6134.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('Les_nuages',
               'I like motorbike, bicycle, french film and music (rock, ballock, classic)',
               'http://friends.japanichiban.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/10/31/spod.6081.jpg',
               120, 120);



