



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('badblueboy',
               'i like all kind of woman,i am easygoing,good and have never harmed any lady.',
               'http://friends.roadjunky.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/04/17/spod.7510.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('breeze16',
               'I want to changes my current lifestyle and i think the best way is going out and making some new friends.^^',
               'http://friends.roadjunky.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/02/18/spod.7336.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('yumechii',
               'Im looking for Boys and Girls whos would like to be my Friends',
               'http://friends.roadjunky.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8046.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('khaiyal',
               'Talk to me~ XD',
               'http://friends.roadjunky.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/11/30/spod.7810.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('jcic',
               'I\&#039;d like to make friends with strong, smart, sexy sassy IoI',
               'http://friends.roadjunky.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/14/spod.8015.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('Secco93',
               'Please drop me a line if you\&#039;re interested in me!',
               'http://friends.roadjunky.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/08/24/spod.7722.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('sanisan',
               'Mostly a happy person who loves spending time with friends',
               'http://friends.roadjunky.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8049.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('Bani_Soup',
               'I love meeting new people, so please talk to me!~',
               'http://friends.roadjunky.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/14/spod.7991.jpg',
               120, 120);



