Yes I have and that maintains the the prototype functionality of the site but the jQuery image fade does not work? When I insert the jquery below the prototype the jquery functionality works but not the prototype functionality? I know I need to include the noConflict, I just don't understand what I put into the code that needs to follow the noConflict.

// Use jQuery via jQuery(...)
jQuery(document).ready(function(){
jQuery("div").hide();
});
// Use Prototype with $(...), etc.
$('someid').hide();
Thanks so much for your help!