



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('aromax',
               'Please make friends\u2606 I want to learn English!',
               'http://e-japanese.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8214.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('evi8n',
               'Be a little stronger every day.Or a bit stranger.. :p',
               'http://e-japanese.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/05/spod.8161.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('juwellyfish',
               'I\&#039;m studying English and Chinese',
               'http://e-japanese.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8204.jpg',
               120, 120);



