



function wfPhoto(url, width, height)
{
  this.url = url;
  this.width = width;
  this.height = height;
}

function wfSPOD(nickname, quote, link, photoUrl, photoWidth, photoHeight, profileLink)
{
  this.nickname = nickname;
  this.quote = quote;
  this.link = link;
  this.photo = new wfPhoto(photoUrl, photoWidth, photoHeight);
  this.profileLink = profileLink;
}

var wfSPODArray = new Array();



wfSPODArray[0] =
    new wfSPOD('green_tea1982',
               'Hi ^^',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/13/spod.8251.jpg',
               120, 
               120,
               'http://friends.shanghaidaily.com/public/browse.jhtml?action=profile&profileId=2898868');

wfSPODArray[1] =
    new wfSPOD('whiteroom',
               'I am interested in learning languages',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/06/14/spod.8127.jpg',
               120, 
               120,
               'http://friends.shanghaidaily.com/public/browse.jhtml?action=profile&profileId=935980');

wfSPODArray[2] =
    new wfSPOD('Junkfood7',
               'Hi ^^',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/05/spod.8170.jpg',
               120, 
               120,
               'http://friends.shanghaidaily.com/public/browse.jhtml?action=profile&profileId=2425974');

wfSPODArray[3] =
    new wfSPOD('nozomi1688',
               '\u3044\u3044\u5965\u3055\u3093\u306A\u308A\u305D\u3046\u3067\u8A00\u308F\u308C\u307E\u3057\u305F.',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8228.jpg',
               120, 
               120,
               'http://friends.shanghaidaily.com/public/browse.jhtml?action=profile&profileId=2608951');

wfSPODArray[4] =
    new wfSPOD('npg31',
               'Typical Pisces!',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/10/10/spod.5959.jpg',
               120, 
               120,
               'http://friends.shanghaidaily.com/public/browse.jhtml?action=profile&profileId=1343593');

wfSPODArray[5] =
    new wfSPOD('tiffanyrn',
               'nice to meet you =)',
               'http://friends.shanghaidaily.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/08/05/spod.8371.jpg',
               120, 
               120,
               'http://friends.shanghaidaily.com/public/browse.jhtml?action=profile&profileId=2765881');



