//Translucent scroller- By Dynamic Drive
//For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
//This credit MUST stay intact for use

var scroller_width='180px'
var scroller_height='330px'
var bgcolor='#f4f4f4'
var pause=10000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)

var scrollercontent=new Array()
//Define scroller contents. Extend or contract array as needed
scrollercontent[0]='<h2>Home Office</h2><h3>Drug Interventions Programme</h3><p>Nationwide training delivered to key staff from a variety of agencies on the new Drug Interventions Record form.&nbsp;&nbsp;&nbsp;<a href="../casestudies/cs_pdf/casestudy_dip.pdf" target="_blank">View Case Study</a>.</p><p><img class="logo" src="../clients/images/logo_homeoffice.gif"><br>&nbsp;</p>'
scrollercontent[1]='<h2>Improvement &amp; Development Agency (IDeA)</h2><h3>Time Recording System Training</h3><p>Tailored training solution emcompassing system functionality and procedural changes.&nbsp;&nbsp;&nbsp;<a href="../casestudies/cs_pdf/casestudy_clarity.pdf" target="_blank">View Case Study</a>.</p><p><img class="logo" src="../clients/images/logo_idea.gif"><br>&nbsp;</p>'
scrollercontent[2]='<h2>Barclays</h2><h3>SharePoint</h3><p>We developed a bespoke training solution for Barclays to implement SharePoint throughout several different business divisions.  The training courses were specific to job roles and focussed on the key principles of SharePoint working on a Portal and Workspace level. We also developed customised Quick Reference Guides and offered Floorwalking support.&nbsp;&nbsp;&nbsp;<a href="../casestudies/cs_pdf/casestudy_sharepoint03.pdf" target="_blank">View Case Study</a>.</p><p><img class="logo" src="../clients/images/logo_barclays.gif"><br>&nbsp;</p>'


////NO need to edit beyond here/////////////

var ie4=document.all
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

if (ie4||dom)
document.write('<div style="position:relative;width:'+scroller_width+';height:'+scroller_height+';overflow:hidden"><div id="canvas0" style="position:absolute;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div><div id="canvas1" style="position:absolute;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div></div>')
else if (document.layers){
document.write('<ilayer id=tickernsmain visibility=hide width='+scroller_width+' height='+scroller_height+' bgColor='+bgcolor+'><layer id=tickernssub width='+scroller_width+' height='+scroller_height+' left=0 top=0>'+scrollercontent[0]+'</layer></ilayer>')
}

var curpos=scroller_height*(1)
var degree=10
var curcanvas="canvas0"
var curindex= Math.floor(Math.random() * scrollercontent.length);
var nextindex=1

function moveslide(){
if (curpos>0){
curpos=Math.max(curpos-degree,0)
tempobj.style.top=curpos+"px"
}
else{
clearInterval(dropslide)
if (crossobj.filters)
crossobj.filters.alpha.opacity=100
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=1
nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"
tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas)
tempobj.innerHTML=scrollercontent[curindex]
nextindex=(nextindex<scrollercontent.length-1)? nextindex+1 : 0
setTimeout("rotateslide()",pause)
}
}

function rotateslide(){
if (ie4||dom){
resetit(curcanvas)
crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.style.zIndex++
if (crossobj.filters)
document.all.canvas0.filters.alpha.opacity=document.all.canvas1.filters.alpha.opacity=20
else if (crossobj.style.MozOpacity)
document.getElementById("canvas0").style.MozOpacity=document.getElementById("canvas1").style.MozOpacity=0.2
var temp='setInterval("moveslide()",50)'
dropslide=eval(temp)
curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
}
else if (document.layers){
crossobj.document.write(scrollercontent[curindex])
crossobj.document.close()
}
curindex=(curindex<scrollercontent.length-1)? curindex+1 : 0
}

function resetit(what){
curpos=parseInt(scroller_height)*(1)
var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
crossobj.style.top=curpos+"px"
}

function startit(){
crossobj=ie4? eval("document.all."+curcanvas) : dom? document.getElementById(curcanvas) : document.tickernsmain.document.tickernssub
if (ie4||dom){
crossobj.innerHTML=scrollercontent[curindex]
rotateslide()
}
else{
document.tickernsmain.visibility='show'
curindex++
setInterval("rotateslide()",pause)
}
}

if (ie4||dom||document.layers)
window.onload=startit