jQuery.noConflict();

// Use jQuery via jQuery(...)
jQuery(document).ready(function(){
  jQuery("#mainImages .csc-textpic-image", this).hover(
    function() {
      if (jQuery("img", this).fadeTo(100, 0.2))
        jQuery("img", this).fadeTo(300, 1.0);
        
      jQuery("dd", this).css("color", "#000000");
    },
    function() {
      jQuery("dd", this).css("color", "#666666");
    }
  );
});

