jQuery.noConflict();

jQuery(document).ready(function() {
  
  jQuery("#photo-matrix .photo a").click(function() {
    var imgUrl = jQuery(this).attr('href');
    jQuery("#primary-photo img").attr('src', imgUrl);
    // jQuery("#primary-photo img").fadeOut(function() {
    //   jQuery(this).attr('src', imgUrl).fadeIn();
    // });
    return false;
  });
  
});