$(document).ready(function(){ // On document ready - Using Jquery Libary
	
	 if ($("#mymovie").is("#mymovie")) { //Check if flash exists
		//	$("#top-logo-flash").css({"visibility":"hidden"});
		   $("#menu3").css({"height":"320px"});// Sets the menu box heightat 80px to allowers user to access buttons underneath.  //change from 80px to 320px//
		 

		  };
	//If no flash or Accessibility mode allow toggle of menu. Menu state starts open to insure that menu is visible 
	// Evenif Javascript is disabled
		$("#menu_but").toggle( 
	      function () {
			$("#menu3").css({"height":"320px"});
	        $("#menu_items").css({"visibility":"hidden"});
		
		
			$("#menu_text").html("Open<br/>Menu");//Change text in menu button
	      },
	      function () {
	        $("#menu_items").css({"visibility":"visible"});
			$("#menu3").css({"height":"600px"});
			$("#menu_text").html("Close<br/>Menu");//Change text in menu button
	      }
	    );
	
	
	
	
	
});