



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('TokyoAndy',
               'I\&#039;m a fun loving open minded serious &amp; nice Canadian',
               'http://personals.mail.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8026.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('erin_liou',
               'My life is for good, not for long.',
               'http://personals.mail.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/10/06/spod.7170.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('Avenue99',
               'I\&#039;m a stage producer. And interested in a foreign culture and a foreign language.',
               'http://personals.mail.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/10/16/spod.5998.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('squishymishy',
               'Keep on rockin in the free world .',
               'http://personals.mail.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/01/05/spod.7304.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('edie1019',
               'I am very interesting. Hope to make friends here.',
               'http://personals.mail.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/28/spod.5661.jpg',
               120, 120);



