



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('kimsaewon',
               'I love sad movies.',
               'http://www.seoulstylefriends.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8197.jpg',
               120, 120);

wfSPODArray[1] =
    new wfSPOD('isabella7',
               '^^',
               'http://www.seoulstylefriends.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/14/spod.8298.jpg',
               120, 120);

wfSPODArray[2] =
    new wfSPOD('classicmusican',
               'I\&#039;d love to teach you English if I can learn Japanese or improve my French.',
               'http://www.seoulstylefriends.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/06/spod.8202.jpg',
               120, 120);

wfSPODArray[3] =
    new wfSPOD('shpuzzle10',
               'Let\&#039;s be friends. ^.^',
               'http://www.seoulstylefriends.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/19/spod.8343.jpg',
               120, 120);

wfSPODArray[4] =
    new wfSPOD('marekw',
               'I started to learn Japanese this month',
               'http://www.seoulstylefriends.com/',
               
               
               'http://images.worldfriends.tv/photos/2010/07/12/spod.8231.jpg',
               120, 120);



