// begin: Belt Conveyer's Parameters
//========================
//Single or More than one message may reside within scrolling
//area while pausing: 0 - Single;  1 - More: as many as they fit in; 
var bmsgnr=0;

//If chosen bmsgnr=1, the CSS format must have "text-align:left".
//A 20px wide blank space is automatically inserted after every
//message. Each one will pause when reaching the left edge.
//If chosen bmsgnr=0, recommended CSS is "text-align:center",
//then any message shorter than conveyer width will be centered.
//When larger than conveyer width, automatically a 20px wide
//blank space is inserted after any such message.
//In any case, if no blank space desired set below value 1:
var blanspa=0;

//First message pops up at the left edge (or centered) and pauses: 1
//First message shows up at the right edge and starts scrolling: 0
var rlopt=0;

//width of the Conveyer in pixels: set to your own; 
//you may set the width as large as you'd like; 
var bwidth=588; 

//height of the Conveyer in pixels: set to your own; 
//you may set the height for as many lines as you'd like; 
//"20" is more or less for one line!
var bheight=20; 

//speed in pixels: the higher the faster.
var bspeed=2; 

//pause between messages in milliseconds: 1000=1s; set to your own; 
var bpause = 2000; 

//BACKGROUND: either color(1) or image(2) ; 
//1.Background color: could be like: "#ffff00" or "yellow";
//set it "" for no background color;
var bbcolor="FFFF00";

//or 2.Background image: "imagename.ext";
//leave it "" for no image background;
var bbground="";

//border for sliding area: 1, ... ;
//set it 0(zero) for no border;
var bborder=0;

//LIVE speed-change option: 0 (not desired) or 1 (desired);
//besclass would be the STYLE
//belcolor would be background color for the area;
var bsopt = 0;
if(bsopt==1){
var besclass='class="stilefss"';
var belcolor='#ccffcc';
}
//end Parameters 

// begin: Belt Conveyer's Messages/Images - 
var sglm=new Array();

//Stand alone Images only - as many as you'd like;
//If no preloading desired go to Messages and fill in as usual:
//sglm[..]='<img src="image1name.ext" width="..." ... />'; ...
//If you want to preload them all when loading your page: 
//Remove all lines from: //Messages: ... up to ... //end Messages 
//Remove "//" from next 6 lines and set your images in first one;

//sglm=["image1name.ext", "image2name.ext", ...];
//var preloadname = new Array();
//for(pp=0;pp<sglm.length;pp++){
//preloadname[pp]=new Image();
//preloadname[pp].src=sglm[pp];
//sglm[pp]='<img src='+preloadname[pp].src+' />';}
//end stand alone Images 

//Messages: as many/few as you'd like: set to your own; 
//Every message MUST be set as a continuous string within '...';
//you may split it by using '+ at ends and then ' at continuations;
//Inside any message you MUST use \' in lieu of ' if need be!
//You may use as many "&+n+b+s+p+;" as you'd need to space 
//within messages - quotes and plus signs don't belong there! 
//Images used within a message - preload is recommended:
//preloadname = new Image();
//preloadname.src = "imagename.ext";
//sglm[..]='< ... ><img ... src='+preloadname.src+' /><...>';

//<a target="_self" class=tabb href="specials.php">'+message+'</a></nobr>';
sglm[0]= '<p class="scrollbox"><a target="_self" class=scroller href="specials.php">'+message+'</a></p>';
//    ...
//sglm[...]='...';
//end Messages 