// JavaScript Document

function close_categories ()
{
	$("links_general").hide();
	$("links_alcohol").hide();
	$("links_cold_and_flu").hide();
	$("links_smoking_cessation").hide();
	$("links_mental_health").hide();
	$("links_womens_health").hide();
	$("links_sexual_health").hide();
	$("links_mens_health").hide();	
}

function show_category ( category )
{
	switch (category)
	{
		case "general":
			close_categories();
			$("links_general").show();
			break;
		case "alcohol":
			close_categories();
			$("links_alcohol").show();
			break;		
		case "cold_and_flu":
			close_categories();
			$("links_cold_and_flu").show();
			break;		
		case "smoking_cessation":
			close_categories();
			$("links_smoking_cessation").show();
			break;		
		case "mental_health":
			close_categories();
			$("links_mental_health").show();
			break;		
		case "womens_health":
			close_categories();
			$("links_womens_health").show();
			break;		
		case "sexual_health":
			close_categories();
			$("links_sexual_health").show();
			break;					
		case "mens_health":
			close_categories();
			$("links_mens_health").show();
			break;			
		default:
	}
}
		