@Dave,
you can remove “gallerific” safely if you disable the slideshow page and you are not using the shortcode slideshow option.
use the “wp_dequeue_script” hook in your theme or custom plugin
function mytheme_dequeue_scripts(){
wp_dequeue_script( 'ims-touch' );
wp_dequeue_script( 'galleriffic' );
}add_action( 'wp_enqueue_scripts','mytheme_dequeue_scripts', 100 );