



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('tongxiaoge',
               'I hope to be friends with you.',
               'http://taiwanfriendfinder.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/11/30/spod.7800.jpg',
               120, 
               120,
               'http://taiwanfriendfinder.com/public/browse.jhtml?action=profile&profileId=927135');

wfSPODArray[1] =
    new wfSPOD('Breyton',
               'Comes the evening, I\&#039;ll be thinking of ways to amuse myself ...',
               'http://taiwanfriendfinder.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/07/30/spod.5252.jpg',
               120, 
               120,
               'http://taiwanfriendfinder.com/public/browse.jhtml?action=profile&profileId=299305');

wfSPODArray[2] =
    new wfSPOD('supreme78317',
               'Hold on to your faith and things will go your way.',
               'http://taiwanfriendfinder.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/11/28/spod.7793.jpg',
               120, 
               120,
               'http://taiwanfriendfinder.com/public/browse.jhtml?action=profile&profileId=2389405');



