Besides the drop down menu(s) it's also being used for the default recent-comments widget and the BFA recent comments widget, to provide li:hover for IE6. If you don't use those either, then you should remove this from header.php as well along with the js file:
PHP Code:
<script type="text/javascript">
<!--
if ( ( typeof( sfHover ) ).toLowerCase() != 'undefined' ) { event_attach( 'onload' , function () {
<?php if (strpos($bfa_ata['configure_header'],'pages')!==FALSE) { ?>sfHover( 'rmenu2' );<?php } ?>
<?php if (strpos($bfa_ata['configure_header'],'cats')!==FALSE) { ?>sfHover( 'rmenu' );<?php } ?>
if (document.getElementById("recent-comments") != null) { sfHover( 'recent-comments' ); }
if (document.getElementById("bfa-recent-comments") != null) {sfHover( 'bfa-recent-comments' ); }
} ); }
//-->
</script>