



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('Masha_K',
               'Hi to everyone!',
               'http://friends.kanji-a-day.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/11/18/spod.7237.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('shino810',
               'You can talk to me in Japanese. Talk with me many things!',
               'http://friends.kanji-a-day.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8328.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('kaorulocke',
               'Good fortune comes to the brave !',
               'http://friends.kanji-a-day.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8259.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('Charlene_RA',
               'Treat others as you would like to be treated... Nankurunaisa!!!',
               'http://friends.kanji-a-day.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8254.jpg',
               120, 120);



