$(document).ready(function() {
//  var objCounter = 1;
//  $(".ulConstruct").each(function () {
//    if(objCounter<=3) {
//      $(this).css("display", "block");
//      $(this).prev("h3").children("a").css("display", "none");
//    }
//    objCounter++;
//  });
  $(".slide").click(function() {
    if($(this).parent().next("ul:first").is(":hidden")) {
      $(this).parent().next("ul:first").slideDown('fast');
    } else {
      $(this).parent().next("ul:first").slideUp('fast');
    }
  });
});




