



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('calypsogerman',
               'Drawing and Music',
               'http://foreignercn.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8243.jpg',
               120, 120);



