



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('Kaze25',
               'Everything you\&#039;ll never understand.',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/09/11/spod.5752.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('champagne_bangkok',
               'I am a smart, popular girl who likes to smile.',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/11/16/spod.6183.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('sosori1',
               'nothing just i like japan',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/07/13/spod.7648.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('SweetMaracuja',
               'What doesn\&#039;t kill you, makes you stronger!',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/06/01/spod.7577.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('fukai_',
               'I love to dress crazy and wear fun makeup~',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/07/09/spod.5126.jpg',
               120, 120);

wfSPODArray[5] =
    new wfSPOD('luka_zg',
               'Go out and party ;)',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/07/08/spod.6870.jpg',
               120, 120);



