



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('MarciaWang',
               'I want to make a lot of friend here,and practice english!',
               'http://friends.j-fan.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/03/09/spod.7357.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('icergu',
               'I don\&#039;t konw i am what i am ,like to meet new friends .',
               'http://friends.j-fan.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/01/05/spod.7296.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('sunny803',
               'who dare, who wins',
               'http://friends.j-fan.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/28/spod.5620.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('hanaxkim',
               'Hola! Bon dia! I love listening to music, going to rock shows',
               'http://friends.j-fan.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/12/07/spod.6302.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('nanasoul',
               'I want to foreign friend and  I like soul music.',
               'http://friends.j-fan.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/11/08/spod.6136.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('takanobusan',
               'don\&#039;t be hurry because life is short',
               'http://friends.j-fan.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8039.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('lichee_wly',
               'The world is flat. That is my favourite book. The Internet makes our world smaller and smaller.',
               'http://friends.j-fan.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/03/03/spod.7339.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('mayne',
               'Hi all.. have a great day',
               'http://friends.j-fan.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/19/spod.5800.jpg',
               120, 120);

wfSPODArray[8] =
    new wfSPOD('daisyduanduan',
               'Hard working &amp; hard playing',
               'http://friends.j-fan.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/28/spod.5665.jpg',
               120, 120);

wfSPODArray[9] =
    new wfSPOD('candysaya',
               'I wanna turn my view to the world and to expand it!',
               'http://friends.j-fan.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8022.jpg',
               120, 120);



