When you have removed that you still have mootools included, if you check the source f your site you still have this included(this is from the ja_pyrite):
<script type="text/javascript" src="/ja_pyrite/media/system/js/mootools.js"></script>
<script type="text/javascript" src="/ja_pyrite/media/system/js/caption.js"></script>
so the mootools will still be included.
but if you include this at top of the index.php file it should be removed:
<?php
//remove mootools.js and caption.js
$headerstuff=$this->getHeadData();
reset($headerstuff['scripts']);
foreach($headerstuff['scripts'] as $key=>$value){
unset($headerstuff['scripts'][$key]);
}
$this->setHeadData($headerstuff);
?>