
$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#slickbox').hide();
 
 // shows the slickbox on clicking the noted link 
  $('a#slick-show').click(function() {
    $('#slickbox').show('slow');
    $(this).toggleClass('opened');
    return false;
  });
 
 // hides the slickbox on clicking the noted link 
  $('a#slick-hide').click(function() {
    $('#slickbox').hide('fast');
    $(this).toggleClass('opened');
    return false;
  });
 
 // toggles the slickbox on clicking the noted link 
  $('a#slick-toggle').click(function() {
    $('#slickbox').slideToggle('fast');
    $(this).toggleClass('opened');
    return false;
  });
 
});



$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
	$('#slickbox2').show();
	$('a#slick-toggle2').toggleClass('opened');
	
 // shows the slickbox on clicking the noted link 
  $('a#slick-show').click(function() {
    $('#slickbox2').hide('slow');
    $(this).toggleClass('opened');
    return false;
  });
 
 // hides the slickbox on clicking the noted link 
  $('a#slick-hide').click(function() {
    $('#slickbox2').show('fast');
    $(this).toggleClass('opened');
    return false;
  });
 
 // toggles the slickbox on clicking the noted link 
  $('a#slick-toggle2').click(function() {
    $('#slickbox2').slideToggle('slow');
    $(this).toggleClass('opened');
    return false;
  });
 
});



$(document).ready(function() {
 // THIS SLICKBOX IS FOR:  Information (Click)
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#slickbox3').hide();
 
 // shows the slickbox on clicking the noted link 
  $('a#slick-show').click(function() {
    $('#slickbox3').hide('slow');
    $(this).toggleClass('opened');
    return false;
  });
 
 // hides the slickbox on clicking the noted link 
  $('a#slick-hide').click(function() {
    $('#slickbox3').show('fast');
    $(this).toggleClass('opened');
    return false;
  });
 
 // toggles the slickbox on clicking the noted link 
  $('a#slick-toggle3').click(function() {
    $('#slickbox3').slideToggle('fast');
    $(this).toggleClass('opened');
    return false;
  });
 
});


$(document).ready(function() {
 // THIS SLICKBOX IS FOR:  Supports (Click)
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#slickbox4').hide();
 
 // shows the slickbox on clicking the noted link 
  $('a#slick-show').click(function() {
    $('#slickbox4').hide('slow');
    $(this).toggleClass('opened');
    return false;
  });
 
 // hides the slickbox on clicking the noted link 
  $('a#slick-hide').click(function() {
    $('#slickbox4').show('fast');
    $(this).toggleClass('opened');
    return false;
  });
 
 // toggles the slickbox on clicking the noted link 
  $('a#slick-toggle4').click(function() {
    $('#slickbox4').slideToggle('fast');
    $(this).toggleClass('opened');
    return false;
  });
 
});


$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#slickbox5').show();
 
 // shows the slickbox on clicking the noted link 
  $('a#slick-show').click(function() {
    $('#slickbox5').hide('slow');
    $(this).toggleClass('opened');
    return false;
  });
 
 // hides the slickbox on clicking the noted link 
  $('a#slick-hide').click(function() {
    $('#slickbox5').show('fast');
    $(this).toggleClass('opened');
    return false;
  });
 
 // toggles the slickbox on clicking the noted link 
  $('a#slick-toggle5').click(function() {
    $('#slickbox5').slideToggle('fast');
    $(this).toggleClass('opened');
    return false;
  });
 
});

