



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('juwellyfish',
               'I\&#039;m studying English and Chinese',
               'http://friends.lifeinkorea.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8204.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('ayahakase',
               'I\u2019m here to meet you, my only one!',
               'http://friends.lifeinkorea.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/05/12/spod.8083.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('lppebbho',
               'I\&#039;m the foreigner who can speak Japanese and Chinese and English',
               'http://friends.lifeinkorea.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8337.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('onion_clyde',
               'I\&#039;m trying to learn Japanese and could do with some help',
               'http://friends.lifeinkorea.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8271.jpg',
               120, 120);

wfSPODArray[4] =
    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.lifeinkorea.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/22/spod.8354.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('kaorulocke',
               'Good fortune comes to the brave !',
               'http://friends.lifeinkorea.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8259.jpg',
               120, 120);

wfSPODArray[6] =
    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.lifeinkorea.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/22/spod.8359.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('kristinetayo',
               'I think your ugly, but you intrigue me. Let\&#039;s chat.',
               'http://friends.lifeinkorea.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/04/29/spod.6675.jpg',
               120, 120);

wfSPODArray[8] =
    new wfSPOD('oruoru',
               'hi!!! nice to meet you!!!',
               'http://friends.lifeinkorea.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8277.jpg',
               120, 120);

wfSPODArray[9] =
    new wfSPOD('sasuke9090',
               'watashi wa aya hirano desu!!! yoruhiku ne!!',
               'http://friends.lifeinkorea.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8195.jpg',
               120, 120);



