



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('AudreyLukia',
               'I search Japanese friends for help me to learn Japanese',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8257.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('JeJeya',
               'Hi, I\&#039;m Korean. Do you want to know who I am?',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/05/spod.8162.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('milujutebe',
               'Hi ~',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/02/spod.8150.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('tloonvye',
               'I would love to be friends with people from all around the globe.. :)',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8280.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('kawaikumasan',
               'Let\&#039;s get together help me learn japanese and i will help you learn english and french.',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/10/06/spod.7169.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('greenpeace927',
               'I don\&#039;t like to talk myself.',
               'http://friends.taiwanstuff.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8311.jpg',
               120, 120);



