



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('s4m4nth4',
               'My friends or family would mainly describe me as friendly, dependable and artistic.',
               'http://personals.shanghaiist.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/09/04/spod.7100.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('pinkDorothy',
               'Life is always like that , pain and joy. What not enjoy it even in pain?',
               'http://personals.shanghaiist.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/09/08/spod.7106.jpg',
               120, 120);



