



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('hiroya77902',
               'It is only sure that I am so kind . I love music so much . I listen to ALL KINDS OF MUSIC , except for recent Jpop .',
               'http://friends.thejapanesepage.com/',
               
               
               'http://images.worldfriends.tv/photos/2007/01/09/spod.4677.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('xxmitsi',
               'Love my work and following the fashion trend',
               'http://friends.thejapanesepage.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8174.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('nolle',
               'My hobby is music,play guitar and snowboarding. I compose.I love rock!!',
               'http://friends.thejapanesepage.com/',
               
               
               'http://images.worldfriends.tv/photos/2009/05/15/spod.7547.jpg',
               120, 120);



