$(function($) {

var secId = '';

  $(".menu-section:first").show();
  $(".section-link").click(function(){
    secId=$(this).attr('id').replace('-link','');
    $(".menu-section").hide();
    $("."+secId).show();
  });
});


