



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('lunabunny',
               'Here I am! Talk to me!',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/14/spod.7985.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('Kushinu',
               'I\&#039;m just an ordinary Girl. Happy always.',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/04/03/spod.7468.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('judy_chang',
               'Nice to meet you!',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/04/spod.7967.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('yoshimi01',
               'To meet the love of my life',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/11/23/spod.7784.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('yuri_0619',
               'A person of a christian please become my friend.',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/27/spod.5564.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('mayimmaktub',
               'I am a very optimistic person that always look out for bright side',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/04/spod.7965.jpg',
               120, 120);



