function show_pas2(id) {
	id = id.value;
	$('pas2').style.display = '';
	
	for(i = 1; i <= 9; i++)
		$('masa' + i).style.display = 'none';
	$('masabar').style.display = 'none';	
	
	$('masa' + id).style.display = '';
}

function showProdus(id) {
	for(i = 1; i <= nrProduse; i++)
		$('produs-' + i).style.display = 'none';			

	$('produs-' + id).style.display = '';
	$('carusel-modele').style.display = 'none';
}

function showProdus2(id) {
	for(i = 1; i <= nrProduse; i++)
		$('produs-' + i).style.display = 'none';			

	$('produs-' + id).style.display = '';	
}

function showModele(ajaxCase, id) {
		
	$('carusel-modele').style.display = '';
		
	var url = 'ajax/ajax.php';
    var pars = 'ajax_case='+ajaxCase+'&id='+id;
    var target = 'carusel-modele';
    var myAjax = new Ajax.Updater(target, url, {method: 'post', parameters: pars, onLoading: processLoading, onComplete: processComplete, onFailure: processFailure});
}

function processLoading(transport) {
}

function processComplete(transport) {
}

function processFailure(transport) {
    alert('Serviciu momentan indisponibil!');
}


