



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('allycat',
               'I\&#039;m a bit vague until I get to know people but underneath I rock =)',
               'http://friends.lakbaypilipinas.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/11/30/spod.7799.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('ling_00',
               'I play Zheng which is a kind of Chinese music instrument and like travaling around.',
               'http://friends.lakbaypilipinas.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/07/16/spod.7671.jpg',
               120, 120);



