//Featured_Menu_Script
var count = 1;
function loopDiv(){setDivSwitch = window.setInterval("divCount(); show_div(count);", 7000);}
function resetCount(setCount){count = setCount;}
function divCount()
{
 count++;
 if (count == 6) count = 1;
 return count;
}
function show_div(div_id) {
 // hide all the divs
 document.getElementById('1').style.display = 'none';
 document.getElementById('2').style.display = 'none';
 document.getElementById('3').style.display = 'none';
 document.getElementById('4').style.display = 'none';
 document.getElementById('5').style.display = 'none';

 // show the requested div
 document.getElementById(div_id).style.display = 'block';
}
function pauseDivSwitch(){ clearInterval(setDivSwitch); }
//End of Featured_Menu_Script
