<!--
window.onload = function(){
var num = 1;
setInterval(function(){
document.getElementById('show' + num).style.display = 'none';
num = document.getElementById('show' + (num+1))? ++num : 1;
document.getElementById('show' + num).style.display = 'block';
},4000);
}
//-->