Thank you for the reply, please bear with me as I believe this is going to be some how hard, like my head.
I think, though I ain't sure, I did all, but I have messed up somewhere, as I see all the jquery-1.6.2.min.js on top of my page, and no slider where it's supposed to be.
I have the following scenario;
A slider script structured like this (I am using it outside Zen Cart ok)
slider / css / basic_slider.css
slider / img / all_the_images_used
slider / js / basic_slider.js
slider / js / libs / jquery-1.6.2.min.js
and on the tpl_header.php file I put this
HTML Code:
<!-- START slider -->
<div id="banner">
<ul class="bannerImgs">
<li><a href=""><img src="/slider/slider_01-en.jpg" alt="" title="" /></a></li>
<li><a href=""><img src="/slider/slider_02-en.jpg" alt="" title="" /></a></li>
<li><a href=""><img src="/slider/slider_03-en.jpg" alt="" title="" /></a></li>
<li><a href=""><img src="/slider/slider_04-en.jpg" alt="" title="" /></a></li>
</ul>
</div>
<!-- Load jQuery and the plug-in -->
<script src="js/libs/jquery-1.6.2.min.js"></script>
<script src="js/basic_slider.js"></script>
<!-- Attach the plug-in to the slider parent element and adjust the settings as required -->
<script>
$(document).ready(function() {
$('#banner').bannerImgs({
'animation' : 'slide',
'width' : 332,
'height' : 177
});
});
</script>
<!-- END slider -->
Following your suggestion - my understanding of it - I did this:
templates / MY_TEMPLATE / jscript / jscript_basic_slider.js
templates / MY_TEMPLATE / jscript / on_load /on_load_jquery-1.6.2.min.js
templates / MY_TEMPLATE / css / stylesheet_basic_slider.css
templates / MY_TEMPLATE / images / slider / all_the_images_used
and in the tpl_header,php file I put the above code, with, and without the
<script src="on_load_jquery-1.6.2.min.js"></script>
<script src="jscript_basic_slider.js"></script>
What did I mess up?