



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('kranketante',
               'Watasi wa Tina desu ... I\&#039;m studying Japanese',
               'http://friends.japan-zone.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8189.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('le_chaperon_rouge',
               'I\&#039;m naturally happy!',
               'http://friends.japan-zone.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8235.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('meram',
               'I\&#039;m an American that recently moved to China',
               'http://friends.japan-zone.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8295.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('darkmiyu13',
               'I\&#039;m looking for friends ... differents culture tips/Boys and girls both are welcome XD',
               'http://friends.japan-zone.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8220.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('shino810',
               'You can talk to me in Japanese. Talk with me many things!',
               'http://friends.japan-zone.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8328.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('icevanhell',
               'I speak German and English fluently and a lil bit of French.',
               'http://friends.japan-zone.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8273.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('Diana_Kisu',
               'loves *MUSIC* .... interested in asian culture',
               'http://friends.japan-zone.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8244.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('Airin_wolf',
               'I am a girl who loves to have fun',
               'http://friends.japan-zone.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/22/spod.8358.jpg',
               120, 120);

wfSPODArray[8] =
    new wfSPOD('kvnthompsn',
               'Can you speak Mandarin/Putonghua?',
               'http://friends.japan-zone.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/22/spod.8366.jpg',
               120, 120);

wfSPODArray[9] =
    new wfSPOD('Mitukin',
               'Hi all! trying hard over English and French',
               'http://friends.japan-zone.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8172.jpg',
               120, 120);



