if (document.getElementsByTagName && document.getElementById) {
if (window.addEventListener) window.addEventListener('load', start, false);
else if (window.attachEvent) window.attachEvent('onload', start);
}

function start() {
sequence();
setInterval("sequence()", 12000);	
// setInterval("chcolor()",1000)
}



function sequence() {
window.setTimeout(function () {  document.getElementById('blink1').style.color = '#6B0505';
  document.getElementById('blink2').style.color = '#6B0505';	},1000);
window.setTimeout(function () {  document.getElementById('blink11').style.color = '#6B0505';
  document.getElementById('blink22').style.color = '#6B0505';	},2000);
window.setTimeout(function () {  document.getElementById('blink111').style.color = '#6B0505';
  document.getElementById('blink222').style.color = '#6B0505';	},3000);
window.setTimeout(function () {  document.getElementById('blink1').style.color = '#fffdc8';	
  document.getElementById('blink2').style.color = '#fffdc8';},4000);
window.setTimeout(function () {  document.getElementById('blink11').style.color = '#fffdc8';
  document.getElementById('blink22').style.color = '#fffdc8';	},5000);
window.setTimeout(function () {  document.getElementById('blink111').style.color = '#fffdc8';
  document.getElementById('blink222').style.color = '#fffdc8';	},6000);

/*
window.setTimeout(function () {  document.getElementById('blink1111').style.color = '#fffdc8';
  document.getElementById('blink1111').style.background = '#6B0505';
  document.getElementById('blink2222').style.color = '#fffdc8';
  document.getElementById('blink2222').style.background = '#6B0505';		},8000);
window.setTimeout(function () {  document.getElementById('blink1111').style.color = '#6B0505';
  document.getElementById('blink1111').style.background = '#fffdc8';
  document.getElementById('blink2222').style.color = '#6B0505';
  document.getElementById('blink2222').style.background = '#fffdc8';		},8500);
window.setTimeout(function () {  document.getElementById('blink1111').style.color = '#fffdc8';
  document.getElementById('blink1111').style.background = '#6B0505';
  document.getElementById('blink2222').style.color = '#fffdc8';
  document.getElementById('blink2222').style.background = '#6B0505';		},9000);
window.setTimeout(function () {  document.getElementById('blink1111').style.color = '#6B0505';
  document.getElementById('blink1111').style.background = '#fffdc8';
  document.getElementById('blink2222').style.color = '#6B0505';
  document.getElementById('blink2222').style.background = '#fffdc8';		},9500);
window.setTimeout(function () {  document.getElementById('blink1111').style.color = '#fffdc8';
  document.getElementById('blink1111').style.background = '#6B0505';
  document.getElementById('blink2222').style.color = '#fffdc8';
  document.getElementById('blink2222').style.background = '#6B0505';		},10000);
window.setTimeout(function () {  document.getElementById('blink1111').style.color = '#6B0505';
  document.getElementById('blink1111').style.background = '#fffdc8';	
  document.getElementById('blink2222').style.color = '#6B0505';
  document.getElementById('blink2222').style.background = '#fffdc8';	},10500);
*/
}
