
var submenu=new Array()

//Set submenu contents. Expand as needed. For each content, make sure everything exists on ONE LINE. Otherwise, there will be JS errors.
	
submenu[0] = '<font class="linkMenu_">&nbsp;&nbsp;<a class="linkMenu_" title="company profile of exotiq real estate" href="http://www.exotiqrealestate.com/about_profile.aspx">company profile</a> | <a class="linkMenu_" title="bussiness philosophy of exotiq real estate" href="http://www.exotiqrealestate.com/about_philosophy.aspx">business philosophy</a> | <a class="linkMenu_" title="exotiq real estate team in indonesia" href="http://www.exotiqrealestate.com/about_indonesia_team.aspx">our team indonesia</a> | <a class="linkMenu_" title="exotiq real estate team in thailand" href="http://www.exotiqrealestate.com/about_thailand_team.aspx">our team thailand</a></font>'
submenu[1] = '<font class="linkMenu_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class="linkMenu_" href="http://www.exotiqrealestate.com/contact_real.aspx" title="contact exotiq real estate offices">real estate</a> | <a class="linkMenu_" title="asia property management services" href="http://www.exotiqrealestate.com/contact_villa.aspx">villa services</a> | <a class="linkMenu_" href="http://www.exotiqrealestate.com/contact_corporate.aspx" title="contact exotiq real estate corporate headquarter">corporate</a></font>'
submenu[2] = '<font class="linkMenu_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class="linkMenu_" title="asia real estate brokerage services" href="http://www.exotiqrealestate.com/services_brokerage.aspx">brokerage</a> | <a class="linkMenu_" title="asia property management services" href="http://www.exotiqrealestate.com/services_villa.aspx">villa services</a> | <a class="linkMenu_" href="http://www.exotiqrealestate.com/services_consulting.aspx" title="asia properties consulting services">consulting</a></font>'
submenu[3] = '<font class="linkMenu_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a class="linkMenu_" title="guide on buying property in indonesia" href="http://www.exotiqrealestate.com/info_indonesia.aspx">buying property in indonesia</a> | <a class="linkMenu_" href="http://www.exotiqrealestate.com/info_thailand.aspx" title="guide on buying property in thailand">buying property in thailand</a> |<a class="linkMenu_" title="exotiq real estate disclaimer" href="http://www.exotiqrealestate.com/info_disclaimer.aspx">disclaimer</a></font>'

//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=500

/////No need to edit beyond here

var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}

function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide)
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)
}

function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}


