// JavaScript Document
 
                                                     /*LASTFM FEED*/ 
 
jQuery(document).ready( function() {
  var _config = {username: 'mrlogandavis',                 // last.fm username
                 placeholder: 'lastfmrecords',       // id of the div in HTML to use for cd covers
                 defaultthumb: 'https://dl.dropbox.com/u/44117/Picture%201.png',                                                     // image shown for no cd cover found
                 period: 'recenttracks',              // recenttracks, 7day, 3month, 6month, 12month, overall, topalbums and lovedtracks
                 count: 6,                           // number of images to show
                 refresh: 5,                        // when to get new data from last.fm (in minutes)
                 offset: -6                           // difference between your timezone and GMT.
                };

  lastFmRecords.debug();                             // log to console
  lastFmRecords.init(_config);
});


                     
