



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('Diana_Kisu',
               'loves *MUSIC* .... interested in asian culture',
               'http://friends.kfm.to/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8244.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('eriwaka',
               'hi ~~',
               'http://friends.kfm.to/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8186.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('meram',
               'I\&#039;m an American that recently moved to China',
               'http://friends.kfm.to/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8295.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.kfm.to/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/22/spod.8354.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('darkmiyu13',
               'I\&#039;m looking for friends ... differents culture tips/Boys and girls both are welcome XD',
               'http://friends.kfm.to/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8220.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('yacchi2060',
               'Im easy going and very friendly. Im looking for some friends who can chat or hang out with me.',
               'http://friends.kfm.to/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8233.jpg',
               120, 120);



