



function wfPhoto(url, width, height)
{
  this.url = url;
  this.width = width;
  this.height = height;
}

function wfSPOD(nickname, quote, link, photoUrl, photoWidth, photoHeight, profileLink)
{
  this.nickname = nickname;
  this.quote = quote;
  this.link = link;
  this.photo = new wfPhoto(photoUrl, photoWidth, photoHeight);
  this.profileLink = profileLink;
}

var wfSPODArray = new Array();



wfSPODArray[0] =
    new wfSPOD('sweet5200',
               'Hope there is the miracle in this world',
               'http://personals.shanghaiist.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/01/02/spod.6362.jpg',
               120, 
               120,
               'http://personals.shanghaiist.com/public/browse.jhtml?action=profile&profileId=1615302');

wfSPODArray[1] =
    new wfSPOD('le_chaperon_rouge',
               'I\&#039;m naturally happy!',
               'http://personals.shanghaiist.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8235.jpg',
               120, 
               120,
               'http://personals.shanghaiist.com/public/browse.jhtml?action=profile&profileId=2784587');



