



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('zhangniu',
               'Just give you my smile',
               'http://asianlanguagepals.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8225.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('green_tea1982',
               'Hi ^^',
               'http://asianlanguagepals.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8251.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('creamycaramel',
               'I want an overseas friends.',
               'http://asianlanguagepals.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8351.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('JayCeeChan',
               'Life is as difficult or as simple as you make it to be',
               'http://asianlanguagepals.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/04/29/spod.6682.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('kimsaewon',
               'I love sad movies.',
               'http://asianlanguagepals.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8197.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('aqua_marine',
               'I hope I could find someone for special friendship that may be more.',
               'http://asianlanguagepals.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8239.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('hiromi1127',
               'Nice to meet you!',
               'http://asianlanguagepals.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8316.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('ponpon77',
               'Let\&#039;s make friends with me.',
               'http://asianlanguagepals.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8347.jpg',
               120, 120);



