jQuery(document).ready(function(){
  
  // LISTINGS TABLE ROW HIGHLIGHTING
	if (jQuery(".listings-table tbody tr")) {
	  jQuery(".listings-table tbody tr").hover(
	    function() {
	      jQuery(this).addClass("tr-highlight");
	    },
	    function() {
	      jQuery(this).removeClass("tr-highlight");
	    }
	  );
	}
  // LISTINGS TABLE SORTING
  // jQuery(".listings-table thead td.th-sort").click(function() {
  //     var settings = this.id.split("_");
  //     jQuery("#sort_field").val(settings[1]);
  //     jQuery("#sort_rule").val(settings[2]);
  //     jQuery("#sort_show_td").val(this.id);
  //     jQuery("#listings-form").submit();
  //   });
  
  // SELECT ALL PROPERTIES
  jQuery("#allbox").click(function() {
    var checked_status = this.checked;
    jQuery("input[name=checkboxsend[]]").each(function() {
      this.checked = checked_status;
    });
  });

});