I would like to show divs at a specific interval (10 seconds) and show next div and as go on and repeat the same. 
**
Sequence :
**
On 10th second
show div1 , hide other divs ,
After 5seconds interval 
Show div 2 and hide other divs, 
After 5 seconds interval
Show div 3 and hide other divs, 
 
and repeat the same for every 10 seconds.
Code Follows:
<div id='div1' style="display:none;"> 
  <!-- content -->
</div>
<div id='div2' style="display:none;"> 
  <!-- content -->
</div>
<div id='div3' style="display:none;"> 
  <!-- content -->
</div>
 
     
     
     
     
     
     
     
     
     
    