



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);

wfSPODArray[1] =
    new wfSPOD('Airin_wolf',
               'I am a girl who loves to have fun',
               'http://foreignercn.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/22/spod.8358.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('Charlene_RA',
               'Treat others as you would like to be treated... Nankurunaisa!!!',
               'http://foreignercn.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8254.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('Wanka',
               'I travel a lot in asia, and loved it so much',
               'http://foreignercn.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8275.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('zhangniu',
               'Just give you my smile',
               'http://foreignercn.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8225.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('eibsee',
               'I love to travel and have fun :)',
               'http://foreignercn.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8222.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('Sobaka',
               'I like to travel, eat good food, go to movies, play darts and pool at the local bars and I enjoy photography.',
               'http://foreignercn.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/22/spod.8354.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('satori_x',
               'Hi! I am an easygoing, weird, fun, smart, shy girl who wishes to find new friends out in the world.',
               'http://foreignercn.worldfriendsnetworks.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8310.jpg',
               120, 120);



