ok, i've narrowed it down to the way mootools is referenced in the index.php file. If i remove the
$old = JURI::base() .'media/system/js/mootools.js';
$new = 'templates/'.$this->template.'/js/mootools.js';
$a = array();
foreach ($this->_scripts as $k => $v)
{
if ($k == $old) {
$a[$new] = $v;
} else {
$a[$k] = $v;
}
}
$this->_scripts = $a;
from elixer, and comment out
JHTML::_( 'behavior.mootools' );
which was imported from dimensions. Then my rokslidestrip module works, but my roklatestnews doesn't fold up and down like it should.
If I leave both the lines in, my roklatestnews does work, my rokslidestrip doesn't.
If I leave one of the lines in, either or, the same applied, roklatest news works, rokslidestrip doesn't in ie.