$(document).ready(function() {
	$("#bottom_shelf ul li").prepend("<span class='vinyl'></span>");
	$("#bottom_shelf ul li a").hover(
		function() {
			$(this).siblings(".vinyl").stop().animate( {marginLeft: "12px"}, 300, "swing" );
		}, function() {
			$(this).siblings(".vinyl").stop().animate( {marginLeft: "0px"}, 300, "swing" );
		}
	);
});

