function updateGallery(idCat, lang){
	$.ajax({
		type: 'POST',
	    url: 'listAll.php',
	    data: 'action=updateActiveCat&lang='+lang+'&active='+idCat,
	    success: function(html){
			$('#catList').html(html);
		}
	});
}

function updateProducts(idCat, lang){
	$.ajax({
		type: 'POST',
	    url: 'listAll.php',
	    data: 'action=updateActiveProds&lang='+lang+'&active='+idCat,
	    success: function(html){
			$('#rightGalleryWrapper').html(html);
		}
	});
}