I wrapped the script in a "div id" as well and called it "slideshow"
<div id="slideshow">
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 500, 360, 0, 2000, 1, "R")
//new fadeshow(fadeimages2, 140, 225, 0, 3000, 0)
</script>
</div>
then added to my css
#slideshow {
margin-left: 60px;
width: 500px;
}
I tried using "float: center" but the script stayed on the left margin, so I had to use "margin-left: 60px"
Sweet



