function init() 
{
if(document.all)
wd = screen.width;
else
wd=window.innerWidth;
if(wd <= 800)
{

var len=document.getElementsByTagName('div');
for (var i = 0; i < len.length; i++)
{ 
if(len[i].getAttribute("title")=='')
{
len[i].setAttribute("style","width:1003px");
}
}
}
}
//window.onload = init();

  go_timer = false;
  go = 1;
  i = 0;
  img_no = 5;
  delay = 5000;

function move_pic(){
    if(i>img_no){i = i + 1;}
    else{i = 1;}
    show_pic(i,"1");

    go_timer = false;
    go_timer = setTimeout("if(go==1){move_pic()}",delay);
  }

  function show_pic(pn,g){
    go = g;
	var link=new Array()
	link[0]='Golden Triangle';
	link[1]='Wildlife';
	link[2]='Heritage';
	link[3]='Festivals';
	link[4]='Cuisines';

	for(j=1;j<=img_no;j++){
		nam=link[j-1];
      document.getElementById("top_img_txt_div_"+j).style.display="none";
	  document.getElementById("show"+j).innerHTML='<div class="div" ONCLICK="show_pic(\''+j+'\',\'0\')" style="cursor:pointer;">'+nam+'</div>';
    }
	nam=link[pn-1];
    document.getElementById("top_img_txt_div_"+pn).style.display="block";
    document.getElementById("show"+pn).innerHTML='<div class="div" style="color:#f50000;background:url(gifs/atbg1.gif) repeat-x left bottom;">'+nam+'</div>';
 }

