/* external file "yourbcparmsgname.txt" begins */
// begin: Belt Conveyer's Parameters - 
//width of the Conveyer in pixels: set to your own; 
//Longer Messages (exceeding width) will slide OK anyway;
var bwidth=550; 

//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; 

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

//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;

//speed in pixels: the higher the faster!
var bspeed=4; 

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

//speed for exceeding portions in milliseconds: 1000=1s; 
//the higher the slower: set to your own;
//"20" equals the speed to the main portion!
//leave it unchanged otherwise;
var fpause=20;

//First message shows 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;

//live speed-change option: 0 (not desired) or 1 (desired);
//beltclass would be the STYLE
//celcolor would be background color
var bsopt = 0;
if(bsopt==1){
var beltclass='class=stilupdn';
var celcolor='#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; 
//<DIV class=... ...> and </DIV> are recommended    
//for alignment and/or Size, Color, ... control.
//Inside any message you MUST use \' in lieu of '!
//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+'><...>';

sglm[0]='<div align="center" class=tabc>'+'<a href="/pdf/ladiesnight-26-02-10.pdf" target="_blank"\'>'+'<B>Ladies Night</B></a> - click for details</div>';
sglm[1]='<div align="center" class=tabc>'+'<a href="/pdf/80s-05-03-10.pdf" target="_blank"\'>'+'<B>Badness</B></a> - click for details</div>';
sglm[2]='<div align="center" class=tabc>'+'<a href="/pdf/ladiesnight-26-02-10.pdf" target="_blank"\'>'+'<B>Irish Night</B></a> - click for details</div>';
sglm[3]='<div align="center" class=tabc>'+'<a href="/pdf/albertlee_12-03-10.pdf" target="_blank"\'>'+'<B>Albert Lee</B></a> - click for details</div>';
sglm[4]='<div align="center" class=tabc>'+'<a href="/pdf/jamiearcher_16-04-10.pdf" target="_blank"\'>'+'<B>Jamie "Afro" Archer</B></a> - click for details</div>';
sglm[5]='<div align="center" class=tabc>'+'<a href="/pdf/blockheads-27-03-10.pdf" target="_blank"\'>'+'<B>A Night of Punk and Funk</B></a> - click for details</div>';
//    ...
//sglm[...]='...';
//end Messages 
/* end of file */