function showProducts(x) {
	$.ajax({
			url:	'showProducts.php?id='+x,
			type:	'GET',	
			async:	true,
			success: function(d) {
				$("#products").html(d);
			}				
	}); 
}

function changeVisibility(x) {
	$("#criteria_"+x).toggle('fast');
	$("#a_criteria_"+x).toggleClass("opened","close");
}
