$(document).ready(function() {
						   
	$('#main-telehealth a').click(function(){
		$("p.telehealth_desc").show("slow",hideLoader());
		function hideLoader() {
			$("a.telehealth_launch").fadeOut('slow');
		}
	});

	$('#main-pediatric a').click(function(){
		$("p.pediatric_desc").show("slow",hideLoader());
		function hideLoader() {
			$("a.pediatric_launch").fadeOut('slow');
		}
	});

	$('#main-psychophysiology a').click(function(){
		$("p.psychophysiology_desc").show("slow",hideLoader());
		function hideLoader() {
			$("a.psychophysiology_launch").fadeOut('slow');
		}
	});

	$('#main-organ a').click(function(){
		$("p.organ_desc").show("slow",hideLoader());
		function hideLoader() {
			$("a.organ_launch").fadeOut('slow');
		}
	});
	
	$('#main-pain a').click(function(){
		$("p.pain_desc").show("slow",hideLoader());
		function hideLoader() {
			$("a.pain_launch").fadeOut('slow');
		}
	});
	
	$('#main-rehabilitation a').click(function(){
		$("p.rehabilitation_desc").show("slow",hideLoader());
		function hideLoader() {
			$("a.rehabilitation_launch").fadeOut('slow');
		}
	});

	$('#main-rural a').click(function(){
		$("p.rural_desc").show("slow",hideLoader());
		function hideLoader() {
			$("a.rural_launch").fadeOut('slow');
		}
	});

	$('#main-fcmu a').click(function(){
		$("p.fcmu_desc").show("slow",hideLoader());
		function hideLoader() {
			$("a.fcmu_launch").fadeOut('slow');
		}
	});
	
	$('#main-drivers a').click(function(){
		$("p.drivers_desc").show("slow",hideLoader());
		function hideLoader() {
			$("a.drivers_launch").fadeOut('slow');
		}
	});
	
	$('#main-mobility a').click(function(){
		$("p.mobility_desc").show("slow",hideLoader());
		function hideLoader() {
			$("a.mobility_launch").fadeOut('slow');
		}
	});
	
	$('#main-hearing a').click(function(){
		$("p.hearing_desc").show("slow",hideLoader());
		function hideLoader() {
			$("a.hearing_launch").fadeOut('slow');
		}
	});

});
								 
