



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('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.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8262.jpg',
               120, 
               120,
               'http://friends.taiwanstuff.com/public/browse.jhtml?action=profile&profileId=2198907');

wfSPODArray[1] =
    new wfSPOD('sasuke9090',
               'watashi wa aya hirano desu!!! yoruhiku ne!!',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8195.jpg',
               120, 
               120,
               'http://friends.taiwanstuff.com/public/browse.jhtml?action=profile&profileId=2795661');

wfSPODArray[2] =
    new wfSPOD('eeexciting',
               '^^',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/08/05/spod.8375.jpg',
               120, 
               120,
               'http://friends.taiwanstuff.com/public/browse.jhtml?action=profile&profileId=2926343');

wfSPODArray[3] =
    new wfSPOD('hiromi1127',
               'Nice to meet you!',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8316.jpg',
               120, 
               120,
               'http://friends.taiwanstuff.com/public/browse.jhtml?action=profile&profileId=2898658');

wfSPODArray[4] =
    new wfSPOD('sydapp',
               'I like free nature (natural spaces like beaches or mountains), cooking asian food, yoga and animals.',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/04/29/spod.6677.jpg',
               120, 
               120,
               'http://friends.taiwanstuff.com/public/browse.jhtml?action=profile&profileId=1341565');

wfSPODArray[5] =
    new wfSPOD('Mitukin',
               'Hi all! trying hard over English and French',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8172.jpg',
               120, 
               120,
               'http://friends.taiwanstuff.com/public/browse.jhtml?action=profile&profileId=1830410');

wfSPODArray[6] =
    new wfSPOD('ulymaster',
               'single, fun korean woman hoping to make global friends.',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8323.jpg',
               120, 
               120,
               'http://friends.taiwanstuff.com/public/browse.jhtml?action=profile&profileId=2890894');



