Yes, change this line in the script:
Code:
write('<div style="position:absolute;width:'+sliderwidth+';height:'+sliderheight+';background-color:'+slidebgcolor+'" onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed">')
to:
Code:
write('<div style="position:absolute;width:'+sliderwidth+';height:'+sliderheight+';background:'+slidebgcolor+'" onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed">')
Then in the configuration part of the script where it says:
Code:
//configure background color:
slidebgcolor="#EAEAEA"
you may use ordinary css syntax for the background property, ex:
Code:
//configure background color:
slidebgcolor="#EAEAEA url('some.jpg')"
For more info on this syntax, check your favorite css reference or:
Blooberry's CSS - Background
Bookmarks