



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('niwa_desu',
               'I am glad to meet you\u2665',
               'http://friends.expatsingapore.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8342.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('eibsee',
               'I love to travel and have fun :)',
               'http://friends.expatsingapore.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8222.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('greenpeace927',
               'I don\&#039;t like to talk myself.',
               'http://friends.expatsingapore.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8311.jpg',
               120, 120);



