/* see http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/ thanks a lot for that */
jQuery(document).ready(function(){
	jQuery('.lastfm_record').hover(function(){
		jQuery(".boxcaptionsmall", this).stop().animate({top:'56px'},{queue:false,duration:160});
	}, function() {
		jQuery(".boxcaptionsmall", this).stop().animate({top:'130px'},{queue:false,duration:160});
	});
});