$(document).ready(function() {
      var _config = {
        username: 'real_takezo',
        count: 9,
        period: '7day',
        defaultthumb: 'http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_large.png'
    };
   lastFmRecords.init(_config);
   
   $("#lastfmrecords a").append("<span></span>");  
   
   $("#lastfmrecords a").hover(
      function () {
        $(this).children("span").stop(true,true).animate({"left": "95px"}, 500);
      }, 
      function () {	
        $(this).children("span").animate({"left": "38px"}, 500);
      }
    );
});
