// JavaScript Document
jQuery(document).ready( function() {
	var _config = {username: 'rubenbcn', // last.fm username
								 placeholder: 'lastfm', // id of the div in HTML to use for cd covers
								 defaultthumb: 'http://cdn.last.fm/depth/catalogue/noimage/cover_85px.gif', // image to show when no cd cover or artist image was found
								 period: '7day', // which period/type of data do you want to show? you can choose from 
								 // recenttracks, 7day, 3month, 6month, 12month, overall, topalbums and lovedtracks
								 count: 9, // number of images to show
								 refresh: 5, // when to get new data from last.fm (in minutes)
								 offset: 2 // difference between your timezone and GMT.
								};
				lastFmRecords.debug(); // log to console
				lastFmRecords.init(_config);
				
				jQuery('#lastfm-periode').bind('change', function() {
        	lastFmRecords.setPeriod(jQuery('#lastfm-periode option:selected').val());
        	lastFmRecords.refreshCovers();
	});
});