jQuery.noConflict();
(function($){
    $(document).ready(function() {
	    /* break tooltips for image details */
	    var altTag = null;
	    $('.imageDetail').live('mouseover',
				     function (){
					 altTag = $(this).attr('title');
					 $(this).attr('title',null);
				     });
	    $('.imageDetail').live('mouseout',
				     function (){
				       $(this).attr('title',altTag);
				     });
	});
})(jQuery);

