jQuery.noConflict();
jQuery(document).ready(function() {
	
	var appendBox = '-info';

	jQuery('.artist-row .artist-thumbs li').hover(
		function() {
			thisThumbName = jQuery(this).attr("id"); //fetch the value of list item's id
			thisBox = "#"+thisThumbName + appendBox; // concat the value of the related info box's id
			jQuery(thisBox).show();//show box
			jQuery("div").find(".artist-info").not(thisBox).hide();// hide all other boxes
			jQuery(".artist-row").find(".current").removeClass("current");// revert to non-current state all links that are flagged as current
			jQuery(this).find("a").addClass("current"); // set this link to be current instead
			}	
	);
	
	jQuery('.artist-row .artist-thumbs li a').click(function(){
		  return false; // disable clicks from the artist's name
		});
});

