$(document).ready(function(){

  $(".parkInfoAdvisoryList li").click(function () {
    if($(this).css('height') == '36px')
    {
      $(this).animate({'height': $(this).find('.advisoryTxtWrap').css('height')});
    }
    else
    {
      $(this).animate({'height': '36px'});
    }
  });

});