Simple functions.php code snippet for unregistering the Superfish Scripts in Genesis WordPress themes.
// Unregister the superfish scripts
add_action( 'wp_enqueue_scripts', 'unregister_superfish' );
function unregister_superfish() {
wp_deregister_script( 'superfish' );
wp_deregister_script( 'superfish-args' );
}