



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('yayadadawowo',
               'Some people think I come off as rude, or stuck up, but really I\&#039;m just kinda shy.',
               'http://personals.shanghaiexpat.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/10/22/spod.6039.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('Siniza',
               'I will go to China, but not decided where excately yet, will you help me to choose?',
               'http://personals.shanghaiexpat.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/12/18/spod.7291.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('nina43',
               'I\&#039;m an easy going person, down to earth and who loves to have fun\u00A0.',
               'http://personals.shanghaiexpat.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/11/27/spod.6246.jpg',
               120, 120);



