// JavaScript Document
var menu = new Array;

menu[0]=new Array('<a href="index.htm"><img src="images/home.gif" border="0"></a>');

menu[1]=new Array('<img src="images/about.gif" border="0">','<a href="what.htm">What&nbsp;is&nbsp;Chi&nbsp;Nei&nbsp;Tsang?</a>','<a href="/blog/?page_id=6">Questions?</a>','<a href="andrew.htm">About&nbsp;Andrew&nbsp;Fretwell</a>','<a href="articles.htm">Articles</a>');

menu[2]=new Array('<img src="images/certification.gif" border="0">','<a href="foundation-videos.htm">Foundation 1 Videos</a>','<a href="foundation2-videos.htm">Foundation 2 Videos</a>','<a href="fusion-smile.htm">Free Smile Meditation</a>','<a href="certification.htm">Practitioner&nbsp;Requirements</a>','<a href="testimonials.htm">Student&nbsp;Testimonials</a>');

menu[3]=new Array('<img src="images/study.gif" border="0">','<a href="study.htm">International&nbsp;Courses</a>');

menu[4]=new Array('<img src="images/practitioners.gif" border="0">','<a href="practitioners.php">Find&nbsp;a&nbsp;Practitioner</a>');

menu[5]=new Array('<img src="images/treatments.gif" border="0">','<a href="Treatments.htm">CNT&nbsp;Treatments</a>');

menu[6]=new Array('<img src="images/contact.gif" border="0">','<a href="contactus.htm">Contact</a>','<a href="links.htm">Links</a>');


function show_menu(){
	document.writeln('<table border="0" cellpadding="0" cellspacing="0"><tr>');
	for(a=0;a<menu.length;a++){
		document.writeln('<td onmouseover="return open_menu('+a+')" onmouseout="return close_menu('+a+');" style="cursor:hand">'+menu[a][0]+'<br />');
		document.writeln('<table border="0" style="visibility:hidden" bgcolor=\"#006d8c\"cellpadding="1" cellspacing="1" id="menu_'+a+'" class="menu" onmouseout="return close_menu('+a+');">');
		for(b=0;b<menu[a].length;b++){
			var c=b+1;
			if(menu[a][c]!=null){
				document.writeln("<tr onmouseover=\"this.style.backgroundColor='#f7a945'\" onmouseout=\"this.style.backgroundColor='#006d8c'\"><td><a href=\"\">"+menu[a][c]+"</a></td></tr>");	
			}		
		}
		document.writeln('</table>');
		document.writeln('</td>');
	}
	document.writeln('</table>');
}

function open_menu(id){
	for(a=0;a<menu.length;a++){
		document.getElementById('menu_'+a).style.visibility='hidden';	
	}
	document.getElementById('menu_'+id).style.visibility='inherit';
}
function close_menu(id){
		document.getElementById('menu_'+id).style.visibility='hidden';	
}