



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('aristocatslala',
               'Please make friends. I\u3000wanna boyfriend as well. Please contact me if you interest.',
               'http://friends.marcotogni.it/',
               
               
               'http://images.worldfriends.tv/photos/2008/11/24/spod.7254.jpg',
               120, 120);



