// JavaScript Document

  
 $(document).ready(function () {
		
	$('#treatments li').click(function () {
																

		//show the selected submenu
		$(this).children('div').slideToggle('medium');
		$(this).children('div').addClass('divshow');


		
		return false;

		
	});
	
	
	$('#closesliders').click(function () {


		//slideup or hide all the Submenu
		$('#treatments li').children('div').slideUp('medium');				
	

		return false;
	});
	
	
	
}); 