



function wfPhoto(url, width, height)
{
  this.url = url;
  this.width = width;
  this.height = height;
}

function wfSPOD(nickname, quote, link, photoUrl, photoWidth, photoHeight, profileLink)
{
  this.nickname = nickname;
  this.quote = quote;
  this.link = link;
  this.photo = new wfPhoto(photoUrl, photoWidth, photoHeight);
  this.profileLink = profileLink;
}

var wfSPODArray = new Array();



wfSPODArray[0] =
    new wfSPOD('tomomix234',
               'I\&#039;m an out going person who likes to go out and have fun.',
               'http://tokyograph.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/11/28/spod.6258.jpg',
               120, 
               120,
               'http://tokyograph.worldfriendsnetworks.com/public/browse.jhtml?action=profile&profileId=1614443');

wfSPODArray[1] =
    new wfSPOD('Kaito1191',
               'I like to cosplay a lot, whenever i have time to.',
               'http://tokyograph.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/07/16/spod.5169.jpg',
               120, 
               120,
               'http://tokyograph.worldfriendsnetworks.com/public/browse.jhtml?action=profile&profileId=1360664');



