// JavaScript Document
var menu = new Array;
menu[0]=new Array('<a href="http://enlight-qigong.org/index.php"><img src="images/main_03.jpg" border="0"></a>');

menu[1]=new Array('<img src="images/main_05.jpg">','<a href="http://enlight-qigong.org/whatis_Enlightenment_Qi_Gong.php">What is Enlightenment Qi Gong?</a>','<a href="http://enlight-qigong.org/history_Of_Enlightenment_QiGong.php">Where does it come from?</a>','<a href="http://enlight-qigong.org/questions.php">Q & A</a>','<a href="http://enlight-qigong.org/downloads.php">Free Downloads</a>');

menu[2]=new Array('<img src="images/main_07.jpg">','<a href="http://enlight-qigong.org/courses.php">Courses by Certified Teachers</a>','<a href="http://enlight-qigong.org/bea_teacher.php">Become a Certified Teacher</a>','<a href="http://enlight-qigong.org/newteaching.php">Latest Teachings & Insights</a>','<a href="http://enlight-qigong.org/qigong-convention-uk.php">EQG Celebration London August 28th 2010</a>','<a href="http://enlight-qigong.org/watch_vedio.php">Andrew Fretwell Video</a>','<a href="http://enlight-qigong.org/youtube2.php">Arjuna Spanish Senior Teacher Video</a>','<a href="http://enlight-qigong.org/watch_video2.php">Glastonbury Enlightenment Qigong Video</a>','<a href="http://enlight-qigong.org/michael.php">Michael Winn Video</a>');

menu[3]=new Array('<img src="images/main_09.jpg">','<a href="http://enlight-qigong.org/International_Teachers.php">International Teachers</a>','<a href="http://enlight-qigong.org/Founder_Andrew_Fretwell.php">Founder & Director Andrew Fretwell</a>','<a href="http://enlight-qigong.org/login.php">Teachers Login</a>');

menu[4]=new Array('<img src="images/main_11.jpg">','<a href="http://enlight-qigong.org/amazing_experiences.php">Peoples Amazing Experiences</a>','<a href="http://enlight-qigong.org/shashi.php">Senior Teacher Shashi Solunas Experiences Video</a>','<a href="http://enlight-qigong.org/saida.php">Senior Teacher Saida Arnolds Experiences</a>');

menu[5]=new Array('<img src="images/main_13.jpg">','<a href="http://enlight-qigong.org/contactus.php">Contact&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a>','<a href="http://enlight-qigong.org/links.php">Links&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</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=\"#FFFFFF\"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='#212474'\" onmouseout=\"this.style.backgroundColor='#FFFFFF'\"><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';	
}