$('div#artistGallery a').click(function(event) {
  var link = $(this).attr("href"); // gets url
  var title = $(this).attr("title"); // gets img title
  link = '<img src="' + link + '" width="520">'; // Builds image tag and sets size
 $('div.featureImage').html(link); // Loads image into container
 $('#featureTitle').html(title); // Loads title into container
 return false;
});
