

function getMenu(){

	/* ============= MENU ======================================
	NOTE: Here you create left hand side menu links.
	Example:
	//arrMenu[maxIndex+1] = "menu_item_text|file_name_far.ext";
	===========================================================*/
	var arrMenu = new Array();
	arrMenu[0] = "home|index.htm";
	arrMenu[1] = "services|services.htm";
	arrMenu[2] = "products|orgoneProducts.htm";
	arrMenu[3] = "NEW products|newOrgoneProducts.htm";
	arrMenu[4] = "healing testimonials|testimonials.htm";
	arrMenu[5] = "orgone testimonials|OrgonePendantTestimonials.htm";
	arrMenu[6] = "moon transmissions|moontransmissions.htm";
	arrMenu[7] = "articles|articles.htm";
	arrMenu[8] = "about Lilly|aboutLilly.htm";
	arrMenu[9] = "events|events.htm";
	arrMenu[10] = "yoga|yogaAdventures.htm";
	arrMenu[11] = "links|links.htm";
	arrMenu[12] = "blog|http://psychicspiritinyou.com";
	arrMenu[13] = "podcast|http://cosmicvibes.podomatic.com";
	arrMenu[14] = "FAQ|FAQ.htm";
	arrMenu[15] = "forum|PHPbb2/index.php";
	arrMenu[16] = "contact|contact.htm";
	

	
	/* ========= ADD NEW MENU ITEMS HERE ======*/
	//arrMenu[11] = "";
	//arrMenu[12] = "";
		
	document.write("<ul>");
	document.write("<br>");
	for(i=0;i<=arrMenu.length-1;i++){				
		var x = new String(arrMenu[i]);
		ix=x.indexOf("|");
		l=arrMenu[i].length;
		label=arrMenu[i].slice(0,ix);
		loc=arrMenu[i].slice(ix+1,l);		
		document.write("<li class='menuItem'><a class='menu' href='"+loc+"'>"+label+"</a></li>");
	}
	document.write("</ul>");
	document.write('<br><div style="text-align:center;"><a href="http://www.facebook.com/PsychicSpiritualHealing" target="_TOP" title="Psychic Spiritual Healing"><img src="http://badge.facebook.com/badge/175003045843487.2915.1683522474.png" width="120" height="451" style="border: 0px;" /></a></div>');
	document.write('<br><div style="text-align:center;"><a href="http://www.cosmicvibes.podomatic.com" target="_TOP" title="Podcast"><img src="http://natures-blessings.org/podcast.png"</a></div>');
}
