//start code for search drop down/..added by virali on 1jun09
//Drop Down/ Overlapping Content: http://www.dynamicdrive.com
//**Updated: Dec 19th, 07': Added ability to dynamically populate a Drop Down content using an external file (Ajax feature)
//**Updated: Feb 29th, 08':
				//1) Added ability to reveal drop down content via "click" of anchor link (instead of default "mouseover")
				//2) Added ability to disable drop down content from auto hiding when mouse rolls out of it
				//3) Added hidediv(id) public function to directly hide drop down div dynamically

//**Updated: Sept 11th, 08': Fixed bug whereby drop down content isn't revealed onClick of anchor in Safari/ Google Chrome

var dropdowncontent={
	disableanchorlink: true, //when user clicks on anchor link, should link itself be disabled (always true if "revealbehavior" above set to "click")
 hidedivmouseout: [true, 200], //Set hiding behavior within Drop Down DIV itself: [hide_div_onmouseover?, miliseconds_before_hiding]
	ajaxloadingmsg: "Loading content. Please wait...", //HTML to show while ajax page is being feched, if applicable
	ajaxbustcache: true, //Bust cache when fetching Ajax pages?

	getposOffset:function(what, offsettype){
		return (what.offsetParent)? what[offsettype]+this.getposOffset(what.offsetParent, offsettype) : what[offsettype]
	},

	isContained:function(m, e){
		var e=window.event || e
		var c=e.relatedTarget || ((e.type=="mouseover")? e.fromElement : e.toElement)
		while (c && c!=m)try {c=c.parentNode} catch(e){c=m}
		if (c==m)
			return true
		else
			return false
	},

	show:function(anchorobj, subobj, e){
		if (!this.isContained(anchorobj, e) || (e && e.type=="click")){
			var e=window.event || e
			if (e.type=="click" && subobj.style.visibility=="visible"){
				subobj.style.visibility="hidden"
				return
			}
			var horizontaloffset=(subobj.dropposition[0]=="left")? -(subobj.offsetWidth-anchorobj.offsetWidth) : 0 //calculate user added horizontal offset
			var verticaloffset=(subobj.dropposition[1]=="top")? -subobj.offsetHeight : anchorobj.offsetHeight //calculate user added vertical offset
			subobj.style.left=this.getposOffset(anchorobj, "offsetLeft") + horizontaloffset + "px"
			subobj.style.top=this.getposOffset(anchorobj, "offsetTop")+verticaloffset+"px"
			subobj.style.clip=(subobj.dropposition[1]=="top")? "rect(auto auto auto 0)" : "rect(0 auto 0 0)" //hide drop down box initially via clipping
			subobj.style.visibility="visible"
			subobj.startTime=new Date().getTime()
			subobj.contentheight=parseInt(subobj.offsetHeight)
			if (typeof window["hidetimer_"+subobj.id]!="undefined") //clear timer that hides drop down box?
				clearTimeout(window["hidetimer_"+subobj.id])
			this.slideengine(subobj, (subobj.dropposition[1]=="top")? "up" : "down")
		}
	},

	curveincrement:function(percent){
		return (1-Math.cos(percent*Math.PI)) / 2 //return cos curve based value from a percentage input
	},

	slideengine:function(obj, direction){
		var elapsed=new Date().getTime()-obj.startTime //get time animation has run
		if (elapsed<obj.glidetime){ //if time run is less than specified length
			var distancepercent=(direction=="down")? this.curveincrement(elapsed/obj.glidetime) : 1-this.curveincrement(elapsed/obj.glidetime)
			var currentclip=(distancepercent*obj.contentheight)+"px"
			obj.style.clip=(direction=="down")? "rect(0 auto "+currentclip+" 0)" : "rect("+currentclip+" auto auto 0)"
			window["glidetimer_"+obj.id]=setTimeout(function(){dropdowncontent.slideengine(obj, direction)}, 10)
		}
		else{ //if animation finished
			obj.style.clip="rect(0 auto auto 0)"
		}
	},

	hide:function(activeobj, subobj, e){
		if (!dropdowncontent.isContained(activeobj, e)){
			window["hidetimer_"+subobj.id]=setTimeout(function(){
				subobj.style.visibility="hidden"
				subobj.style.left=subobj.style.top=0
				clearTimeout(window["glidetimer_"+subobj.id])
			}, dropdowncontent.hidedivmouseout[1])
		}
	},

	hidediv:function(subobjid){
		document.getElementById(subobjid).style.visibility="hidden"
	},

	ajaxconnect:function(pageurl, divId){
		var page_request = false
		var bustcacheparameter=""
		if (window.XMLHttpRequest) // if Mozilla, IE7, Safari etc
			page_request = new XMLHttpRequest()
		else if (window.ActiveXObject){ // if IE6 or below
			try {
			page_request = new ActiveXObject("Msxml2.XMLHTTP")
			} 
			catch (e){
				try{
				page_request = new ActiveXObject("Microsoft.XMLHTTP")
				}
				catch (e){}
			}
		}
		else
			return false
		document.getElementById(divId).innerHTML=this.ajaxloadingmsg //Display "fetching page message"
		page_request.onreadystatechange=function(){dropdowncontent.loadpage(page_request, divId)}
		if (this.ajaxbustcache) //if bust caching of external page
			bustcacheparameter=(pageurl.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
		page_request.open('GET', pageurl+bustcacheparameter, true)
		page_request.send(null)
	},

	loadpage:function(page_request, divId){
		if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)){
			document.getElementById(divId).innerHTML=page_request.responseText
		}
	},

 init:function(anchorid, pos, glidetime, revealbehavior){
		var anchorobj=document.getElementById(anchorid)
		var subobj=document.getElementById(anchorobj.getAttribute("rel"))
		var subobjsource=anchorobj.getAttribute("rev")
		if (subobjsource!=null && subobjsource!="")
			this.ajaxconnect(subobjsource, anchorobj.getAttribute("rel"))
		subobj.dropposition=pos.split("-")
		subobj.glidetime=glidetime || 1000
		subobj.style.left=subobj.style.top=0
		if (typeof revealbehavior=="undefined" || revealbehavior=="mouseover"){
			anchorobj.onmouseover=function(e){dropdowncontent.show(this, subobj, e)}
			anchorobj.onmouseout=function(e){dropdowncontent.hide(subobj, subobj, e)}
			if (this.disableanchorlink) anchorobj.onclick=function(){return false}
		}
		else
			anchorobj.onclick=function(e){dropdowncontent.show(this, subobj, e); return false}
		if (this.hidedivmouseout[0]==true) //hide drop down DIV when mouse rolls out of it?
			subobj.onmouseout=function(e){dropdowncontent.hide(this, subobj, e)}
	}
}

//end code for search drop down

/*
document.write("<table border=0 cellpadding=0 cellspacing=0 width=\"575\">");
document.write("<tr><td colspan=\"9\"><img src=\"../../images/ly_spacer.gif\" width=\"575\" height=\"9\"></td></tr>");
document.write("<tr><td width=\"36\"><a href=\"../../index.htm\"><img src='../images/mnu_home.gif' border=\"0\" width=\"38\" height=\"19\"></a></td>");
document.write("<td width=\"70\"><a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616031609_0,0,14,null,'inspiration')\" onMouseOut=\"MM_startTimeout();\"><img src='../images/mnu_inspi.gif' name=\"inspiration\" border=\"0\" id=\"inspiration\" width=\"83\" height=\"19\"></a></td>");
document.write("<td width=\"45\"><a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616032147_0,0,14,null,'ashram')\" onMouseOut=\"MM_startTimeout();\"><img src='../images/mnu_ash.gif' name=\"ashram\" border=\"0\" id=\"ashram\" width=\"48\" height=\"19\"></a></td>");
document.write("<td width=\"45\"><a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616033843_0,0,14,null,'activities')\" onMouseOut=\"MM_startTimeout();\"><img src='../images/mnu_act.gif' name=\"activities\" border=\"0\" id=\"activities\" width=\"51\" height=\"19\"></a></td>");
//document.write("<td>&nbsp;</td>");
document.write("<td width=\"110\"><a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616035325_0,0,14,null,'projects')\" onMouseOut=\"MM_startTimeout();\"><img src='../images/mnu_proj.gif' name=\"projects\" border=\"0\" id=\"projects\" width=\"59\" height=\"19\"></a></td>");
document.write("<td width=\"120\"><a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616035851_0,0,14,null,'publications')\" onMouseOut=\"MM_startTimeout();\"><img src=\"../images/mnu_pnr.gif\" name=\"publications\" border=\"0\" id=\"publications\" width=\"134\" height=\"19\"></a></td>");
document.write("<td width=\"47\"><a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616040313_0,-80,14,null,'schedule')\" onMouseOut=\"MM_startTimeout();\"><img src='../images/mnu_sch.gif' name=\"schedule\" border=\"0\" id=\"schedule\" width=\"59\" height=\"19\"></a></td>");
document.write("<td width=\"49\"><a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616040422_0,-34,14,null,'centers')\" onMouseOut=\"MM_startTimeout();\"><img src='../images/mnu_cent.gif' name=\"centers\" border=\"0\" id=\"centers\" width=\"51\" height=\"19\"></a></td>");
document.write("<td width=\"52\"><a href=\"../../contactus/html/cont_us.htm\"><img src='../images/mnu_cont.gif' border=\"0\" width=\"58\" height=\"19\"></a></td></tr>");
document.write("<tr valign=\"top\" bgcolor=\""+strNormalBg+"\"><td colspan=\"9\"><img src=\"../../images/ly_spacer.gif\" width=\"575\" height=\"1\"></td></tr></table>");
*/

/*
document.write("<table border=0 cellpadding=0 cellspacing=0 width=\"570\">");
document.write("<tr><td colspan=\"9\"><img src=\"../../images/ly_spacer.gif\" width=\"570\" height=\"9\"></td></tr>");
document.write("<tr><td height=\"19\" style=\"font-family:Arial, verdana, Helvetica, sans-serif;font-size:11px; color:"+strHighTxt+";\"><a href=\"../../index.htm\" style=\"cursor:pointer;cursor:hand;color:"+strHighTxt+";text-decoration:none;\">Home</a> &nbsp;|&nbsp;");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616031609_0,0,14,null,'inspiration')\" onMouseOut=\"MM_startTimeout();\"  name=\"inspiration\" id=\"inspiration\" style=\"cursor:pointer;cursor:hand;color:"+strHighTxt+";text-decoration:none;\">The Inspiration</a> &nbsp;|&nbsp;");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616032147_0,0,14,null,'ashram')\" onMouseOut=\"MM_startTimeout();\"  name=\"ashram\" id=\"ashram\" style=\"cursor:pointer;cursor:hand;color:"+strHighTxt+";text-decoration:none;\">Ashram</a> &nbsp;|&nbsp;");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616033843_0,0,14,null,'activities')\" onMouseOut=\"MM_startTimeout();\"  name=\"activities\" id=\"activities\" style=\"cursor:pointer;cursor:hand;color:"+strHighTxt+";text-decoration:none;\">Activities</a> &nbsp;|&nbsp;");
//document.write("<td>&nbsp;</td>");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616035325_0,0,14,null,'projects')\" onMouseOut=\"MM_startTimeout();\" name=\"projects\" id=\"projects\" style=\"cursor:pointer;cursor:hand;color:"+strHighTxt+";text-decoration:none;\">Projects</a> &nbsp;|&nbsp;");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616035851_0,0,14,null,'publications')\" onMouseOut=\"MM_startTimeout();\" name=\"publications\" id=\"publications\" style=\"cursor:pointer;cursor:hand;color:"+strHighTxt+";text-decoration:none;\">Publications &amp; Recordings</a> &nbsp;|&nbsp;");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616040313_0,0,14,null,'schedule')\" onMouseOut=\"MM_startTimeout();\" name=\"schedule\" id=\"schedule\" style=\"cursor:pointer;cursor:hand;color:"+strHighTxt+";text-decoration:none;\">Schedules</a> &nbsp;|&nbsp;");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616040422_0,0,14,null,'centers')\" onMouseOut=\"MM_startTimeout();\" name=\"centers\" id=\"centers\" style=\"cursor:pointer;cursor:hand;color:"+strHighTxt+";text-decoration:none;\">Centres</a> &nbsp;|&nbsp;");
document.write("<a href=\"../../contactus/html/cont_us.htm\" style=\"cursor:pointer;cursor:hand;color:"+strHighTxt+";text-decoration:none;\">Contact Us</a></style></td></tr>");
document.write("<tr valign=\"top\" bgcolor=\""+strNormalBg+"\"><td colspan=\"9\"><img src=\"../../images/ly_spacer.gif\" width=\"575\" height=\"1\"></td></tr></table>");
*/
function fnSearch()
{
	//alert("sfdf");
	//alert("wow this works"+document.getElementById("txt_search").value);
	document.getElementById("frmMenu").action="../../search/asp/search.asp?text=" + document.getElementById("txt_search").value;
	document.getElementById("frmMenu").submit();

}
function noenter(e) 
{	
	//alert("pressed enter");
  if(e.keyCode == 13)
	{
		//alert("pressed enter");
		document.getElementById("Search").click();
	}
  //return !(window.event && window.event.keyCode == 13); 
}
//document.write('<script type="text/javascript" src="dropdowncontent.js"></script>');

//document.write("<form id ='frmMenu' method='post'>");
//document.write("<table border=0 cellpadding=0 cellspacing=0 width=\"570\">");
//document.write("<tr><td colspan=\"9\" align=\"right\" ><input type=\"text\" name=\"txt_search\" id=\"txt_search\" size=\"10\" height=\"9\" maxlength=\"30\" style=\"font-family:Arial, verdana, Helvetica, sans-serif;font-size:11px; text-decoration:none;\" onkeypress='noenter(event)'></input>&nbsp;");
//document.write("<input type='button' onClick='fnSearch()' value='Search' id='Search' style=\"font-family:Arial, verdana, Helvetica, sans-serif;font-size:11px; color:"+strNormalBg+";text-decoration:none;\"> &nbsp;</td></tr>");
//document.write("<tr><td colspan=\"9\"><img src=\"../../images/ly_spacer.gif\" width=\"570\" height=\"5\"></td></tr>");
//document.write("</form>");
document.write("<table border=0 cellpadding=0 cellspacing=0 width=\"570\">");
document.write("<tr><td height=\"19\" style=\"font-family:Arial, verdana, Helvetica, sans-serif;font-size:11px; color:"+strNormalBg+";\"><a href=\"../../index.asp\" style=\"cursor:pointer;cursor:hand;color:"+strNormalBg+";text-decoration:none;\">Home</a> &nbsp;|&nbsp;");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616031609_0,0,14,null,'inspiration')\" onMouseOut=\"MM_startTimeout();\"  name=\"inspiration\" id=\"inspiration\" style=\"cursor:pointer;cursor:hand;color:"+strNormalBg+";text-decoration:none;\">The Inspiration</a> &nbsp;|&nbsp;");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616032147_0,0,14,null,'ashram')\" onMouseOut=\"MM_startTimeout();\"  name=\"ashram\" id=\"ashram\" style=\"cursor:pointer;cursor:hand;color:"+strNormalBg+";text-decoration:none;\">Ashram</a> &nbsp;|&nbsp;");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616033843_0,0,14,null,'activities')\" onMouseOut=\"MM_startTimeout();\"  name=\"activities\" id=\"activities\" style=\"cursor:pointer;cursor:hand;color:"+strNormalBg+";text-decoration:none;\">Activities</a> &nbsp;|&nbsp;");
//document.write("<td>&nbsp;</td>");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616035325_0,0,14,null,'projects')\" onMouseOut=\"MM_startTimeout();\" name=\"projects\" id=\"projects\" style=\"cursor:pointer;cursor:hand;color:"+strNormalBg+";text-decoration:none;\">Projects</a> &nbsp;|&nbsp;");
document.write("<a href=\"../../divineshop/welcome.aspx\" style=\"cursor:pointer;cursor:hand;color:"+strNormalBg+";text-decoration:none;\">Divine Shop</a> &nbsp;|&nbsp;");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616040313_0,0,14,null,'schedule')\" onMouseOut=\"MM_startTimeout();\" name=\"schedule\" id=\"schedule\" style=\"cursor:pointer;cursor:hand;color:"+strNormalBg+";text-decoration:none;\">Schedules</a> &nbsp;|&nbsp;");
document.write("<a href=\"javascript:;\" onMouseOver=\"MM_showMenu(window.mm_menu_0616040422_0,0,14,null,'centers')\" onMouseOut=\"MM_startTimeout();\" name=\"centers\" id=\"centers\" style=\"cursor:pointer;cursor:hand;color:"+strNormalBg+";text-decoration:none;\">Centres</a> &nbsp;|&nbsp;");
document.write("<a href=\"../../contactus/html/cont_us.htm\" style=\"cursor:pointer;cursor:hand;color:"+strNormalBg+";text-decoration:none;\">Contact Us</a> &nbsp;|&nbsp;");
document.write("<a href=\"../../search/asp/search.asp\" style=\"cursor:pointer;cursor:hand;color:"+strNormalBg+";text-decoration:none;\" id='searchlink' rel='subcontent'>Search</a></style></td></tr>");
document.write("<tr valign=\"top\" bgcolor=\""+strNormalBg+"\"><td colspan=\"9\"><img src=\"../../images/ly_spacer.gif\" width=\"570\" height=\"1\"></td></tr></table>");

document.write('<DIV id="subcontent" style="position:absolute; visibility: hidden; border: 9px solid '+strNormalBg+'; background-color: white; width: 320px; padding: 8px;">');

//document.write('<b>Search</b>');
document.write('<form method="get" action="../../search/asp/search.asp" id="topform">');
document.write('<input name="text" maxlength="255" style="width: 200px" id="topsearchbox" alt="Search" /> ');
document.write('<input value="Search" class="topformbutton" type="submit" />');
document.write('</form>');
document.write('</DIV>');

document.write('<script type="text/javascript">');
//Call dropdowncontent.init("anchorID", "positionString", glideduration, "revealBehavior") at the end of the page:

document.write('dropdowncontent.init("searchlink", "left-bottom", 300, "click")');
//dropdowncontent.init("contentlink", "left-top", 300, "click")

document.write('</script>');