// JavaScript Document
var menu = new Array;
menu[0]=new Array('<a href="http://whitetiger-company.com/the-3-guiding-principles.php"><img src="http://whitetiger-company.com/images/extraordinary.png" border="0" width="148" height="35" /></a>','<a href="the-3-guiding-principles.php">The 3 Guiding Principles</a>','<a href="pleasure-pain.php">Pleasure & Pain</a>','<a href="silence-bliss.php">Silence & Bliss</a>');

menu[1]=new Array('<a href="http://whitetiger-company.com/program.php"><img src="http://whitetiger-company.com/blog/wp-content/themes/k2/images/whatiger-program.png"" border="0" width="151" height="35" /></a>','<a href="bliss-uncertainty.php">The Bliss of Uncertainty</a>','<a href="sake-whole.php">For The Sake of the Whole</a>','<a href="living-an-extraordinary-life.php">Living an Extraordinary Life</a>','<a href="deeper-then-habit.php">Resting Deeeper Then Habit</a>','<a href="opposite.php">The Mystery of the Opposite</a>');

menu[2]=new Array('<a href="http://whitetiger-company.com/mission.php"><img src="http://whitetiger-company.com/images/our-mission.png" border="0" width="101" height="35" /></a>','<a href="mission.php">Mission</a>','<a href="biography.php">Biography</a>');

menu[3]=new Array('<a href="http://whitetiger-company.com/international-courses.php"><img src="http://whitetiger-company.com/images/international-courses.png" border="0" width="153" height="35" /></a>');

menu[4]=new Array('<a href="http://whitetiger-company.com/blog"><img src="http://whitetiger-company.com/images/blog.png" border="0" width="61" height="35" /></a>',
				  '<a href="/blog/stories-of-commitment/">Stories of Commitment</a>','<a href="/blog/articles/">Articles</a>','<a href="/blog/audios/">Audios</a>','<a href="/blog/video/">Videos</a>');


menu[5]=new Array('<a href="http://whitetiger-company.com/contact.php"><img src="http://whitetiger-company.com/images/contact.png" border="0" width="79" height="35" /></a>');

menu[6]=new Array('<a href="http://whitetiger-company.com/index.php"><img src="http://whitetiger-company.com/images/home.png" border="0" width="71" height="35" /></a>');


function show_menu(){
	document.writeln('<table border="0" cellpadding="0" cellspacing="0" class="menus"><tr>');
	for(a=0;a<menu.length;a++){
		document.writeln('<td onmouseover="return open_menu('+a+')" onmouseout="return close_menu('+a+');" style="cursor:pointer">'+menu[a][0]+'<br />');
		document.writeln('<table border="0" style="visibility:hidden" bgcolor=\"#000000\"cellpadding="0" cellspacing="0" 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='#ff9900'\" onmouseout=\"this.style.backgroundColor='#000000'\"><td style=\"padding:2px;font-size:13px;\">"+menu[a][c]+"</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';	
}


