



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);

wfSPODArray[1] =
    new wfSPOD('may821',
               'I\&#039;d love to make friends all over the world!!',
               'http://friends.marcotogni.it/',
               
               
               'http://images.worldfriends.tv/photos/2009/03/03/spod.7343.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('junpi2',
               'I\&#039;m good at making friends.I wish you would like me!! Let\&#039;s enjoy our lives.',
               'http://friends.marcotogni.it/',
               
               
               'http://images.worldfriends.tv/photos/2008/12/10/spod.7273.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('kokoshka',
               'I would love to meet new people from all over the world!',
               'http://friends.marcotogni.it/',
               
               
               'http://images.worldfriends.tv/photos/2008/05/08/spod.6699.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('yacchi2060',
               'Im easy going and very friendly. Im looking for some friends who can chat or hang out with me.',
               'http://friends.marcotogni.it/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8233.jpg',
               120, 120);



