



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('sofiepink',
               'Friends say I\&#039;m innocent,crazy,amusing.',
               'http://friends.stippy.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/02/06/spod.6483.jpg',
               120, 
               120,
               'http://friends.stippy.com/public/browse.jhtml?action=profile&profileId=1625094');



