



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('or10n',
               'wanna meet a cute girls ^_^',
               'http://personals.shanghaiexpat.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8330.jpg',
               120, 
               120,
               'http://personals.shanghaiexpat.com/public/browse.jhtml?action=profile&profileId=2906484');

wfSPODArray[1] =
    new wfSPOD('unicornincognito',
               'I love black eyes and I cannot lie!',
               'http://personals.shanghaiexpat.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/04/spod.5706.jpg',
               120, 
               120,
               'http://personals.shanghaiexpat.com/public/browse.jhtml?action=profile&profileId=1484525');

wfSPODArray[2] =
    new wfSPOD('Vakteria',
               'I\&#039;m looking for people all over the world (even extra terrestrials) to share my friendship with!',
               'http://personals.shanghaiexpat.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/01/16/spod.7306.jpg',
               120, 
               120,
               'http://personals.shanghaiexpat.com/public/browse.jhtml?action=profile&profileId=1796312');



