



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('ayakobabe',
               'Hate being called bimbo, it seems many people out there equate a pretty face with foolishness.',
               'http://friends.3yen.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/02/06/spod.4763.jpg',
               120, 
               120,
               'http://friends.3yen.com/public/browse.jhtml?action=profile&profileId=1052673');



