$(document).ready(function () {
	
	$('.artistTableBox').mouseenter(function() {
        	$('.artistTableImageTop', this).fadeIn("slow");
	});
	$('.artistTableBox').mouseleave(function() {
        	$('.artistTableImageTop', this).fadeOut("slow");
	});
	
});
