Didn’t get a response, so i did this incase anyone is interested.
in the Theme_actions file(not sure if everyone has this)
it automatically adds a IE conditional tag
<!--[if lt IE 9]>
<![endif]-->
inside mine had a pngfix.js script (BTW the script that was included does fix the png errors IE has)
i added this `<script>
ltie9 = true;
</script>`
then in every script i added this at the top
<script>
if (ltie9 == false) {
then at the very end of the script i closed it with }
works like a charm.