$(document).ready(function()
	{
		$(".openNav").click(function () {
		 if ($(this).next(".expandedNav").is(":hidden")) {
		    $(this).next(".expandedNav").slideDown('fast');
		    /* uncomment this line to have plain text minus sign instead of down arrow then comment out line below it*/
		   $(this).children('span').text('+');
		  
              
		   
		 } else {
			
		   $(this).next(".expandedNav").slideUp('fast');
		   /*uncomment this line to have plain text plus sign instead of up arrow then comment out line below it*/
		  $(this).children('span').text('-');
		 
               
		}
	}); 

});

$(document).ready(function()
		{
		
		$(".vasholder1").hide(); 
			$(".openvas").click(function () {
			 if ($(this).next(".vasholder1").is(":hidden")) {
			    $(this).next(".vasholder1").slideDown('fast');
			    
			
			  
	              
			   
			 } else {
				
			   $(this).next(".vasholder1").slideUp('fast');
			  
			
			 
	               
			}
		}); 

	});





