$(document).ready(function()
    {
    	$("#artwork ul li.cover a").mouseover(function() 
    	{
    		$(this).stop().animate({marginLeft:'-68px'},'slow');
    		var artist = $(this).attr("alt");
    		artist = artist.toUpperCase();
    		$("#coverflow-info").html("<p>" + artist + "</p>");
    	});
    	
    	$("#artwork ul li.cover a").mouseout(function() 
    	{
    		$(this).stop().animate({marginLeft:'0px'},'fast');
    		//$("#coverflow-info").html("");
    	});
    	
    });

