/**
 * @author threecolors
 */



$(document).ready (function(){
	$("#valuerLicense").hide();
	$('#valuerCheck').click(function(){
		if ($(this).is(":checked")) {
		$("#valuerLicense").show();
		}
		else 
			$("#valuerLicense").hide();	
	})
	
	// AJAX
	 $("#ajaxloader").ajaxStart(function(){
	 	$(this).show();
	 }).ajaxStop(function(){
	 	$(this).hide();
	 });
	 
	 $("#reg-search").hide();
	 
	 var countOrgs = $("table.listOrgs tr").size();
	 if (countOrgs > 20) {
	 	$("#reg-search").show();	
	 } 
	 $("#orgsName").searchElem(".listOrgs tr td.name a", ".listOrgs tr");
	 $("#orgsCity").searchElem(".listOrgs tr td.city", ".listOrgs tr");
	 $("#orgsVoivod").searchElem(".listOrgs tr td.voivod", ".listOrgs tr");
})






