// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults




function remove_field(element, item) {
  $(element).parent().parent().remove();
};

jQuery(document).ready(function($) {
  $('div.pagination a').live('click', function() {
    $('#resultados').load(this.href);
    return false;
  })
});





jQuery.ajaxSetup({ 
  'beforeSend': function(xhr) {xhr.setRequestHeader("Accept", "text/javascript")} 
});