Hmm not sure what you mean. Are you basically asking how to absolutely position the left right slideshow so it's, for example, at the very upper left corner of the page? If so, you can try changing this line inside the script:
Code:
document.writeln('<div id="main2" style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden;background-color:'+scrollerbgcolor+'">')
to:
Code:
document.writeln('<div id="main2" style="position:absolute;left:0;top:0;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden;background-color:'+scrollerbgcolor+'">')
Bookmarks