Here is the page i work on so you could see what i mean.
http://blueglue.us/Testpage0987.html And here is the original script from the file that i need expanded from one to twelve scripts running...
// JavaScript Document
/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: voidvector :: http://www.webdeveloper.com/forum/showthread.php?t=201460
*/
var UpdateInterval = 20;
var PixelPerInterval = 2;
var scorllerInterval;
function start_scroll_right() {
scorllerInterval = setInterval(scroll_right, UpdateInterval);
}
function scroll_right() {
document.getElementById('scroller1').scrollLeft -= PixelPerInterval;
}
function start_scroll_left() {
scorllerInterval = setInterval(scroll_left, UpdateInterval);
}
function scroll_left() {
document.getElementById('scroller1').scrollLeft += PixelPerInterval;
}
function stop_scrolling() {
clearInterval(scorllerInterval);
}
If it's possible i would really appreciate any help, Thank you!
