



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('allycat',
               'I\&#039;m a bit vague until I get to know people but underneath I rock =)',
               'http://friends.attitudetravel.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/11/30/spod.7799.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('ling_00',
               'I play Zheng which is a kind of Chinese music instrument and like travaling around.',
               'http://friends.attitudetravel.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/07/16/spod.7671.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('wakusei33',
               'I like travel.',
               'http://friends.attitudetravel.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/15/spod.8018.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('permbroom',
               'check me out!!',
               'http://friends.attitudetravel.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/28/spod.5631.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('malgosia91',
               'My looks like foreigner but I can speak Japanese fluently.',
               'http://friends.attitudetravel.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/12/21/spod.7930.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('backyfafa',
               'dream to travel around the world!',
               'http://friends.attitudetravel.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/14/spod.8000.jpg',
               120, 120);

wfSPODArray[6] =
    new wfSPOD('lunabunny',
               'Here I am! Talk to me!',
               'http://friends.attitudetravel.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/01/14/spod.7985.jpg',
               120, 120);

wfSPODArray[7] =
    new wfSPOD('smap0115',
               'I wish i could make some japanese friends in shanghai',
               'http://friends.attitudetravel.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/28/spod.5642.jpg',
               120, 120);

wfSPODArray[8] =
    new wfSPOD('weiwei87',
               'If you wanna know more about me, message me!!!',
               'http://friends.attitudetravel.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/07/30/spod.5237.jpg',
               120, 120);



