



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('minmin36',
               'I want to study English.Please help me!',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/26/spod.5851.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('keibowbow',
               'My English is not good.please make my friends if you like ^-^',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/09/07/spod.7733.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('lavandura',
               'Please be my friend,if you can speak English or Spanish, and little Japanese.',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2006/10/26/spod.4475.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('megoxoxmeg',
               'I\&#039;m usually talktive, but when I speak English , I will get quiet all of a sudden.',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/11/12/spod.7218.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('kaoruko661',
               'I\&#039;m funny and love to do something amusing.',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/05/14/spod.6718.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('naominge',
               'I\&#039;m easy going , could be a real minge somethimes though ;P',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/04/20/spod.7537.jpg',
               120, 120);



