var item=new Array()
item[0]="\"Excessive stress at work is costing the British economy about -100bn a year\"
MIND Mental Health Charity"
item[1]="\"Work-related stress accounts for over a third of all new incidences of ill health\"
Health and Safety Executive"
item[2]="\"A total of 13.8 million working days were lost to work-related stress in 2006 / 2007\"
Health and Safety Executive"
item[3]="\"A Mori poll of 112 UK companies revealed that 65% believed stress was a major factor in ill health in their organisations\"MORI"
var count = 3;
var delay = 6000
var current=0
var ns6=document.getElementById&&!document.all
function changeItem(){
if(document.layers){
document.layer1.document.write(item[current])
document.layer1.document.close()
}
if(ns6)document.getElementById("rotate").innerHTML=item[current]
{
if(document.all){
rotate.innerHTML=item[current]
}
}
if (current==3) current=0
else current++
setTimeout("changeItem()",delay)
}
window.onload=changeItem