$(document).ready(function(){
		$(".getExpert").click(function() {
			$(".healthExpertName a").css({"text-decoration" : "none"});
			$(this).css({"text-decoration" : "underline"});
		});
	});
	function getHealthExpert(expertId) {
		
		$.get('/includes/modules/health_experts/ajax/scripts.asp', { expertId: expertId }, function(data) {
			$('#healthExpertContentContainer').html(data);
			$('#healthExpertContentContainer').show();
		});
	}
