
$(document).ready(function() {

 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)

 for (i = 1; i<=15; i++) {
	 thisref = "#a" + i;
  	$(thisref).hide();
 }
 
 // toggles the slickbox on clicking the noted link
  $('a#q1').click(function() {
 	$('#a1').toggle(200);
 	return false;
  });
  
  $('a#q2').click(function() {
 	$('#a2').toggle(200);
 	return false;
  });

  $('a#q3').click(function() {
 	$('#a3').toggle(200);
 	return false;
  });
  
  $('a#q4').click(function() {
 	$('#a4').toggle(200);
 	return false;
  });
 
   $('a#q5').click(function() {
 	$('#a5').toggle(200);
 	return false;
  });

   
    $('a#q6').click(function() {
 	$('#a6').toggle(200);
 	return false;
  });

	$('a#q7').click(function() {
 	$('#a7').toggle(200);
 	return false;
  });


	$('a#q8').click(function() {
 	$('#a8').toggle(200);
 	return false;
  });

	$('a#q9').click(function() {
 	$('#a9').toggle(200);
 	return false;
  });

	   
	$('a#q10').click(function() {
 	$('#a10').toggle(200);
 	return false;
  });

		
	$('a#q11').click(function() {
 	$('#a11').toggle(200);
 	return false;
  });

		 
	$('a#q12').click(function() {
 	$('#a12').toggle(200);
 	return false;
  });

		  

	$('a#q13').click(function() {
 	$('#a13').toggle(200);
 	return false;
  });
		   
	$('a#q14').click(function() {
 	$('#a14').toggle(200);
 	return false;
  });
 
  $('a#q15').click(function() {
 	$('#a15').toggle(200);
 	return false;
  });

});