//Copyright 2007 SVA. All rights reserved.
//This scrip will toggle visibility between section on each page based on user request.

//This array is to keep the name of each div Ids
home_div = new Array(4);

home_div[0] = "introduction";
home_div[1] = "sayadaw";
home_div[2] = "chanmyay_main";
home_div[3] = "announcement";

teaching_div = new Array(4);

teaching_div[0] = "teaching1";
teaching_div[1] = "teaching2";
teaching_div[2] = "teaching3";
teaching_div[3] = "teaching4";
teaching_div[4] = "teaching5";


function switchdiv(div_name, divid){
var secs;
var sec = document.getElementById ? 
  document.getElementById(divid) : document.all.divid;
  
for(i=0;i < div_name.length;i++){
	secs = document.getElementById ? 
  		document.getElementById(div_name[i]) : document.all.div_name[i];
  	secs.style.display="none";
}
sec.style.display = "block";
}

function open_search_option(){
	var box = document.getElementById ? 
  		document.getElementById('radio_bbox') : document.all.radio_bbox;
  
  	box.style.display = "block";
}
function roll_over_img1(){
	var _img = document.getElementById ? 
  		document.getElementById('close_search_option') : document.all.close_search_option;
  
  	_img.src = 'images/close_b2.gif';
}
function roll_over_img2(){
	var _img = document.getElementById ? 
  		document.getElementById('close_search_option') : document.all.close_search_option;
  
  	_img.src = 'images/close_b1.gif';
}