		$(document).ready(function () {
		  $('lI ul').hide(); // hide all ULs inside LI
		  $('lI.drawer ul').show();	 
		  $('H2').click(function () {
		   
			 // show the associated drawer content to 'this' (this is the current H2 element)
			// since the drawer content is the next element after the clicked H2, we find
			// it and show it using this:
			
			$(this).next().slideToggle();
		  });
		});
		
		
		
									
							
							<!--
							function openWindow(theURL,winName,features) { 
							  window.open(theURL,winName,features);
							}
							//-->
						