<!--

var line=new Array()
line[1]="Thank You for visiting BCL Mining & Mechanical Inc."
line[2]="Full line of Crushing, Screening & Wear Protection Products"
line[3]="24/7 Sales & Support - Custom Fabrication - Installation & Repair"
line[4]="Inspection & Training Services - Preventative Maintenance Programs"
line[5]="Single Source solution for the Mining, Aggregates & Recycling Industry"

// Specify font size for scroller below 
var ts_fontsize="12px"

//--Do not edit below this line

var longestmessage=1
for (i=2;i<line.length;i++){
if (line[i].length>line[longestmessage].length)
longestmessage=i
}

//Auto set scroller width
var tscroller_width=line[longestmessage].length

lines=line.length-1 //--Number of lines

//if IE4+ or NS6

if (document.all||document.getElementById){
document.write('<input type="text" name="banner" ')
document.write('style=" width:420px; background-color: transparent; color: #666666; font-family: arial; font-size: '+ts_fontsize+'; font-weight:bold; border: medium none; text-align: center; padding-left: 2px; padding-right: 2px" onfocus="blur()">')
}

temp=""
nextchar=-1;
nextline=1;
cursor=""
function animate(){
if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines){
nextline++;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",2800)}
else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){
nextline=1;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",2800)}
else{
nextstep()}}

function nextstep(){

nextchar++;
temp+=line[nextline].charAt(nextchar);
document.bannerform.banner.value=temp+cursor
setTimeout("animate()",25)}

//if IE4+ or NS6
if (document.all||document.getElementById)
window.onload=animate
// -->