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