<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

//slider's width
var swidth=140

//slider's height
var sheight=250

//slider's speed
var sspeed=1

var singletext=new Array()
singletext[0]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">ACCOUNTABILITY</a></b><p><font color="#ffeda9">Each employee at  BSG<sup>&reg;</sup> is accountable to all stakeholders for their actions.</font></div>'
singletext[1]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">ACCURACY</a></b><p><font color="#ffeda9">BSG<sup>&reg;</sup> is committed to producing accurate work. Our goal is to get it right the first time.</FONT></div>'
singletext[2]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">COMMUNICATION</a></b><p><font color="#ffeda9">We strive first to understand and then to be understood. Each communication from  BSG<sup>&reg;</sup> and within  BSG<sup>&reg;</sup>, to the extent possible, should be clear, positive and brief.</font></div>'
singletext[3]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">EMPOWERMENT</a></b><p><font color="#ffeda9">Within the guidelines of our common values, strategies and vision, all employees at  BSG<sup>&reg;</sup> are empowered to make decisions and to perform the jobs they have been trained for and are qualified to perform. When in doubt, we will err to the benefit of our customers.</font></div>'
singletext[4]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">FLEXIBILITY</a></b><p><font color="#ffeda9">It is the goal of  BSG<sup>&reg;</sup> to be open to the input of others, to realize that there are usually several ways to address any issue and to seek the best answer for our stakeholders.</font></div>'
singletext[5]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">INNOVATION</a></b><p><font color="#ffeda9">BSG<sup>&reg;</sup> will maintain its reputation for providing fresh approaches to existing challenges as well as new opportunities. We will operate on the premise that if you always do what you always did, you always get what you always got.</FONT></div>'
singletext[6]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">INTEGRITY</a></b><p><font color="#ffeda9">BSG<sup>&reg;</sup>\'s highest calling is to be known for honesty, trustworthiness and confidentiality with all stakeholders.</FONT></div>'
singletext[7]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">RECOGNITION</a></b><p><font color="#ffeda9">BSG<sup>&reg;</sup> will provide an environment where effort that goes beyond the expected is recognized in a special way.</font></div>'
singletext[8]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">RESPECT</a></b><p><font color="#ffeda9">At  BSG<sup>&reg;</sup>, we will give respect to all stakeholders for their contributions and we will seek to earn respect in turn.</FONT></div>'
singletext[9]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">RISK TOLERANCE</a></b><p><font color="#ffeda9">Our belief at  BSG<sup>&reg;</sup> is that making a mistake is one of the greatest learning tools available. Our goal is that all employees learn from each other\'s mistakes so that we never make the same mistake twice.</font></div>'
singletext[10]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">TEAMWORK</a></b><p><font color="#ffeda9">BSG<sup>&reg;</sup> embraces the acronym TEAM (Together Everyone Achieves More) and believe that synergism is the result of teamwork. We believe that teamwork is at its best when it includes all stakeholders.</font></div>'
singletext[11]='<div align="left"><b><a class="A1" href="/aboutBSG/who.asp">VISION</a></b><p><font color="#ffeda9">Although  BSG<sup>&reg;</sup> has benefited from and will continue to work at gradual and sustained growth, we believe that our future will be predicated on at least some "breakthrough" solutions to business problems. All employees should consider themselves "commissioned" to contribute in this area.</FONT></div>'

if (singletext.length>1)
i=1
else
i=0
function start(){
if (document.all){
ieslider1.style.top=sheight
iemarquee(ieslider1)
}
else if (document.layers){
document.ns4slider.document.ns4slider1.top=sheight
document.ns4slider.document.ns4slider1.visibility='show'
ns4marquee(document.ns4slider.document.ns4slider1)
}
else if (document.getElementById&&!document.all){
document.getElementById('ns6slider1').style.top=sheight
ns6marquee(document.getElementById('ns6slider1'))
}
}
function iemarquee(whichdiv){
iediv=eval(whichdiv)
if (iediv.style.pixelTop>0&&iediv.style.pixelTop<=sspeed){
iediv.style.pixelTop=0
setTimeout("iemarquee(iediv)",50)
}
if (iediv.style.pixelTop>=sheight*-1){
iediv.style.pixelTop-=sspeed
setTimeout("iemarquee(iediv)",50)
}
else{
iediv.style.pixelTop=sheight
iediv.innerHTML=singletext[i]
if (i==singletext.length-1)
i=0
else
i++
}
}
function ns4marquee(whichlayer){
ns4layer=eval(whichlayer)
if (ns4layer.top>0&&ns4layer.top<=sspeed){
ns4layer.top=0
setTimeout("ns4marquee(ns4layer)",50)
}
if (ns4layer.top>=sheight*-1){
ns4layer.top-=sspeed
setTimeout("ns4marquee(ns4layer)",50)
}
else{
ns4layer.top=sheight
ns4layer.document.write(singletext[i])
ns4layer.document.close()
if (i==singletext.length-1)
i=0
else
i++
}
}
function ns6marquee(whichdiv){
ns6div=eval(whichdiv)
if (parseInt(ns6div.style.top)>0&&parseInt(ns6div.style.top)<=sspeed){
ns6div.style.top=0
setTimeout("ns6marquee(ns6div)",50)
}
if (parseInt(ns6div.style.top)>=sheight*-1){
ns6div.style.top=parseInt(ns6div.style.top)-sspeed
setTimeout("ns6marquee(ns6div)",50)
}
else{
ns6div.style.top=sheight
ns6div.innerHTML=singletext[i]
if (i==singletext.length-1)
i=0
else
i++
}
}

