



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('Wanka',
               'I travel a lot in asia, and loved it so much',
               'http://friends.forumosa.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8275.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('ASky',
               'I am also currently learning Mandarin and Japanese, if you know either one you can play the role of a teacher with me.',
               'http://friends.forumosa.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/22/spod.8359.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('Chloe90',
               'I am a young fun person with a hunger for adventure :P',
               'http://friends.forumosa.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8270.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('Sobaka',
               'I like to travel, eat good food, go to movies, play darts and pool at the local bars and I enjoy photography.',
               'http://friends.forumosa.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/22/spod.8354.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('ifos',
               'I came from Sweden. Ett liv \u00E4r kanh\u00E4nda, att liksom en sl\u00E4nda f\u00E5 flyga en enda sk\u00E4lvande dag.',
               'http://friends.forumosa.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8262.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('le_chaperon_rouge',
               'I\&#039;m naturally happy!',
               'http://friends.forumosa.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8235.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('greenpeace927',
               'I don\&#039;t like to talk myself.',
               'http://friends.forumosa.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8311.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('kaorulocke',
               'Good fortune comes to the brave !',
               'http://friends.forumosa.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8259.jpg',
               120, 120);

wfSPODArray[8] =
    new wfSPOD('lanhuayi1024',
               'learning everyday',
               'http://friends.forumosa.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8267.jpg',
               120, 120);

wfSPODArray[9] =
    new wfSPOD('calypsogerman',
               'Drawing and Music',
               'http://friends.forumosa.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8243.jpg',
               120, 120);



