
function makeMyMenu()
{
  //Use "with(JSFX)" so we dont have to use the fully qualified name JSFX.JSMenuBar etc...
  with(JSFX)
  {
	var myMenuBar = new JSMenuBar(false,true);
	var menu;
	var menu2;
	var menu3;

	menu = new JSMenu("SGGS");
	myMenuBar.add(menu);

	menu.add(new JSMenuItem("Home", "sggs.com/sggsapy.html","_blank"));
	menu.add(new JSMenuItem("Lectures","sggs.com/lex.html"));
	menu.add(new JSMenuItem("Pictures","sggs.com/pix.html"));
	menu.add(new JSMenuItem("Links","sggs.com/links.html"));
	menu.add(new JSMenuItem("Site Details","sggs.com/about.html"));
	menu.add(new JSMenuItem("Contact","mailto:buildingbhakti@yahoo.com.au"));


	
	menu = new JSMenu("Eternally Infinite");
	menu.add(new JSMenuItem("Why Me","eternally_infinite/why_me.html"));
	menu.add(new JSMenuItem("What on Earth","eternally_infinite/what_on_earth.html"));
	menu.add(new JSMenuItem("Karma","eternally_infinite/karma.html"));
	menu.add(new JSMenuItem("Ignorance","eternally_infinite/ignorance.html"));
	menu.add(new JSMenuItem("God","eternally_infinite/god.html"));
	menu.add(new JSMenuItem("Hell","eternally_infinite/hell.html"));
	menu.add(new JSMenuItem("Unavailable","eternally_infinite/soul.html"));
	menu.add(new JSMenuItem("Unavailable","eternally_infinite/bhakti.html"));
	menu.add(new JSMenuItem("Unavailable","eternally_infinite/reading.html"));
	myMenuBar.add(menu);




	menu = new JSMenu("Tulasi Devi");
	menu.add(new JSMenuItem("Glories of Tulasi","tulasidotcom/tulasi_glories.html"));
	menu.add(new JSMenuItem("Tulasi Stava","tulasidotcom/tulasi_stava.html"));
	menu.add(new JSMenuItem("Tulasi Mantras","tulasidotcom/tulasi_mantras.html"));
	menu.add(new JSMenuItem("Tulasi Lecture","tulasidotcom/tulasi_lect.html"));
	myMenuBar.add(menu);


	menu = new JSMenu("Login");
	menu.add(new JSMenuItem("Login","login.html"));
	menu.add(new JSMenuItem("NB: Microsoft Interactive Spreadsheet Database works only in","login.html"));
	menu.add(new JSMenuItem("Internet Explorer. Please use Internet Explorer if available","login.html"));
	myMenuBar.add(menu);


	menu = new JSMenu("W.A.S.P.");
	menu.add(new JSMenuItem("W.A.S.P.","wasp/wasp.html"));
	menu.add(new JSMenuItem("Dandabhanga","wasp/danda/danda.html"));
	menu.add(new JSMenuItem("Bookshop","wasp/bookshop/bookshop.html"));
	menu.add(new JSMenuItem("Blogs","wasp/blogs/bloghome.html"));
	menu.add(new JSMenuItem("Bovinus Extinctus","wasp/blogs/pages/cow_blog.html"));
	menu.add(new JSMenuItem("Machine in Town","wasp/blogs/pages/machine.html"));
	menu.add(new JSMenuItem("Twin Towers","wasp/blogs/pages/twin_towers.html"));
	menu.add(new JSMenuItem("Top Secret","wasp/blogs/pages/topsecret.html"));
	menu.add(new JSMenuItem("Surrender","wasp/blogs/pages/surrender.html"));
	menu.add(new JSMenuItem("War","wasp/blogs/pages/war.html"));
	menu.add(new JSMenuItem("Rasik's Altars","wasp/altars.html"));
	myMenuBar.add(menu);



	myMenuBar.add(new JSMenuItem("Haribol", "javascript:alert(\"Please accept my humble obesiances\")"));

	myMenuBar.attachLayer("menu1");
	myMenuBar.build();
  }
}

