jQuery(document).ready(function(){
	jQuery("#searchCat").keyup(function(event){
		if (inputCharacter(event.keyCode)) {
			searchElement("tbody tr",jQuery("#catTable"),jQuery(this).val());
		}
	});
	jQuery("#nat_id").each(function(){
		convertSelect(jQuery(this),function(input,value){
			searchAttributes('tbody tr',jQuery("#catTable"),'nat_id',value);
		});
	});
	jQuery("#comp_id").each(function(){
		convertSelect(jQuery(this),function(input,value){
			searchAttributes('tbody tr',jQuery("#catTable"),'comp_id',value);
		});
	});
	jQuery("#tm_id").each(function(){
		convertSelect(jQuery(this),function(input,value){
			searchAttributes('tbody tr',jQuery("#catTable"),'tm_id',value);
		});
	});
	jQuery("#style_id").each(function(){
		convertSelect(jQuery(this),function(input,value){
			searchAttributes('tbody tr',jQuery("#catTable"),'style_id',value);
		});
	});
});


