
var flag=0;
var timerid ;
function elapse()
{
      var j = flag % 4;
      Show_TabGMenu(1,j)
      flag++;
	  timerid = setTimeout("elapse()",3000);
}
function chkflag()
{
   clearTimeout(timerid);
}
//elapse();


