



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('lorilynne',
               '\u306F\u3058\u3081\u307E\u3057\u3066\u3001\u30ED\u30EA\u3067\u3054\u3056\u3044\u307E\u3059',
               'http://nihonmura.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2009/06/09/spod.7605.jpg',
               120, 
               120,
               'http://nihonmura.worldfriends.tv/public/browse.jhtml?action=profile&profileId=559129');

wfSPODArray[1] =
    new wfSPOD('yumes_cloud_nine',
               '\u30D5\u30A1\u30C3\u30B7\u30E7\u30F3\u30C7\u30B6\u30A4\u30CA\u30FC\u306B\u306A\u308B\u305F\u3081\u306B\u52C9\u5F37\u3057\u3066\u3044\u307E\u3059\u3002',
               'http://nihonmura.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2009/06/09/spod.7600.jpg',
               120, 
               120,
               'http://nihonmura.worldfriends.tv/public/browse.jhtml?action=profile&profileId=956731');



