// JavaScript Document
  $(document).ready(function(){
    // hides the menu when the page loads
		$("p.myTrigger").hide(); 
    // toggles the menu up and down when the div tag is clicked
    	$("li.myTrigger").click(function () {
	//	Opens / closes the menu slowly
	 	$("p.myTrigger").toggle("slow");
    });    

  });
