/* ---------------------------------------------------- */
/* JQuery												*/
/* ---------------------------------------------------- */
$jQuery(document).ready(function() 
{
 	
	/* hides all non required displays as soon as the DOM is ready */
	$jQuery('#motability1').hide();
	$jQuery('#motability2').hide();
	$jQuery('#motability3').hide();
	$jQuery('#motability4').hide();
	$jQuery('#motability5').hide();
	$jQuery('#motability6').hide();	
	
	/* Hide and show relevant sections if they click questions */	
	$jQuery("#motabilityq1").click(function() { 
		$jQuery('#motability1').show('slow');
		$jQuery('#motability2').hide('slow');
		$jQuery('#motability3').hide('slow');
		$jQuery('#motability4').hide('slow');
		$jQuery('#motability5').hide('slow');
		$jQuery('#motability6').hide('slow');			
	});
	
	/* Hide and show relevant sections if they click questions */	
	$jQuery("#motabilityq2").click(function() { 
		$jQuery('#motability1').hide('slow');
		$jQuery('#motability2').show('slow');
		$jQuery('#motability3').hide('slow');
		$jQuery('#motability4').hide('slow');
		$jQuery('#motability5').hide('slow');
		$jQuery('#motability6').hide('slow');			
	});
		
	/* Hide and show relevant sections if they click questions */	
	$jQuery("#motabilityq3").click(function() { 
		$jQuery('#motability1').hide('slow');
		$jQuery('#motability2').hide('slow');
		$jQuery('#motability3').show('slow');
		$jQuery('#motability4').hide('slow');
		$jQuery('#motability5').hide('slow');
		$jQuery('#motability6').hide('slow');			
	});
		
	/* Hide and show relevant sections if they click questions */	
	$jQuery("#motabilityq4").click(function() { 
		$jQuery('#motability1').hide('slow');
		$jQuery('#motability2').hide('slow');
		$jQuery('#motability3').hide('slow');
		$jQuery('#motability4').show('slow');
		$jQuery('#motability5').hide('slow');
		$jQuery('#motability6').hide('slow');			
	});
		
	/* Hide and show relevant sections if they click questions */	
	$jQuery("#motabilityq5").click(function() { 
		$jQuery('#motability1').hide('slow');
		$jQuery('#motability2').hide('slow');
		$jQuery('#motability3').hide('slow');
		$jQuery('#motability4').hide('slow');
		$jQuery('#motability5').show('slow');
		$jQuery('#motability6').hide('slow');			
	});
		
	/* Hide and show relevant sections if they click questions */	
	$jQuery("#motabilityq6").click(function() { 
		$jQuery('#motability1').hide('slow');
		$jQuery('#motability2').hide('slow');
		$jQuery('#motability3').hide('slow');
		$jQuery('#motability4').hide('slow');
		$jQuery('#motability5').hide('slow');
		$jQuery('#motability6').show('slow');			
	});
})
