



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('VTCurry',
               '\u3088\u308D\u3057\u304F\u304A\u306D\u304C\u3044\u3057\u307E\u3059\uFF01',
               'http://french-code.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/08/21/spod.5507.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('goldfinger726',
               '\u982D\u8133 + \u7B4B\u529B = \u50D5\u2026\u8208\u5473\u3042\u308B\uFF1F',
               'http://french-code.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2007/11/01/spod.6091.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('elliehaas',
               '^^',
               'http://french-code.worldfriends.tv/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8327.jpg',
               120, 120);



