$(document).ready(function() {
  $('img.detailThumb').hover(function() {
    var altText = $(this).attr('alt');

    if (altText) {
      $('#caption_section').html("<span class='bullet'>" + altText + "</span>");
    }
  },
  function() {
     $('#caption_section').html('');
  });

  $('a.detailThumb').click(function() {
    var src = $(this).attr('href');

	if ($('#detailImage').attr('src') != src) {
	  $('#detailImage').fadeOut('slow', function() {
        $('#detailImage').attr('src', src);
        $('#detailImage').load(function() {
          $('#detailImage').fadeIn('slow');
        });
		$('.view-large a').attr('src', src.replace("d\.","e\."));
		$('.view-large a').attr('href', src.replace("d\.","e\."));
      });
    }
    return false;
  });

});

