You've pretty much lost me but, I can tell you that the image array isn't for that and that the script would need to be pretty radically altered to use it in that fashion.
The layout of slideshow can be most easily influenced at three points, depending upon just how deep into the layout structure you need to get and what you need to do when you get there. The easiest is from outside the script. If you have a container around the slide show call, ex:
HTML Code:
<div id="slideOne">
<script type="text/javascript">
new fadeshow(fadimages, 140, 225, etc . . .
</script>
</div>
You could, for example, influence the positions of things inside the slide show with a style rule (or rules) in the head of the page:
Code:
<style type="text/css">
#slideOne div {
position:relative;
left:10px;
}
</style>
should push all images in the slide show 10px to the right.
Bookmarks