



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('kirkgleam',
               'I\&#039;m a peaceful person, but I\&#039;m also a MMA fighter and training hard as one of my hobbies.',
               'http://friends.chinese-outpost.com/',
               
               
               'http://images.worldfriends.tv/photos/2008/06/13/spod.6781.jpg',
               120, 
               120,
               'http://friends.chinese-outpost.com/public/browse.jhtml?action=profile&profileId=1774376');

wfSPODArray[1] =
    new wfSPOD('nozomi1688',
               '\u3044\u3044\u5965\u3055\u3093\u306A\u308A\u305D\u3046\u3067\u8A00\u308F\u308C\u307E\u3057\u305F.',
               'http://friends.chinese-outpost.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8228.jpg',
               120, 
               120,
               'http://friends.chinese-outpost.com/public/browse.jhtml?action=profile&profileId=2608951');



