Drupal.behaviors.live_filter = function() {
  // Hide the apply button.  Hold the jQuery object for use later
  var apply = $('.views-exposed-widget input.form-submit');
  apply.hide();
 
  $('.views-exposed-widget select').change(function() {
    apply.submit();
  });
}

$(document).ready(function()
{
        //hide the all of the element with class msg_body
        $(".field-field-hiderevealbody").hide();
        //slides the element with class "msg_body" when paragraph with class "msg_head" is clicked
        $("div.field-field-hidereveallabel").click(function()
    {
                $(this).next("div.field-field-hiderevealbody").slideToggle(700).siblings("div.field-field-hiderevealbody").slideUp("fast");
        });
});

;

