the problem is in the index.php of the generated template,
Templatetoaster generates this lines:
<?php
$doc->addScript($template_path.'/js/totop.js');
$doc->addScript($template_path.'/js/Customjs.js');
$doc->addScript($template_path.'/js/tt_slideshow.js');
?>
if i replace that with this lines:
<script type="text/javascript" src="<?php echo $template_path?>/js/totop.js"></script>
<script type="text/javascript" src="<?php echo $template_path?>/js/Customjs.js"></script>
<script type="text/javascript" src="<?php echo $template_path?>/js/tt_slideshow.js"></script>
all is working well!
i have tested it with the latestet TT Version and the problem there ist still the same, maybe there is some setting problem?