



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('AnastasiaNell',
               'I know a tinnnny bit of french but i want to learn Japanese',
               'http://japanpersonals.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2009/12/07/spod.7837.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('sqrt428',
               'If you want to know more about Japan and me,don\&#039;t hesitate to contact me.',
               'http://japanpersonals.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2008/12/04/spod.7264.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('yumechii',
               'Im looking for Boys and Girls whos would like to be my Friends',
               'http://japanpersonals.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8046.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('amber_bamber',
               'i am friendly at times but am easly tepmered',
               'http://japanpersonals.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8036.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('deadlysintaida',
               'Eyes are the windows to the soul.',
               'http://japanpersonals.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/14/spod.8002.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('lunabunny',
               'Here I am! Talk to me!',
               'http://japanpersonals.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/14/spod.7985.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('khyrr',
               'I\&#039;m looking for friends of any kind.',
               'http://japanpersonals.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8034.jpg',
               120, 120);



