function mostrarMenu(menuId) {
	if(menuAntId != '') {
		swapClass($(menuAntId),menuAntClass);
	}
	if($(menuId)!= null) {
		menuAntId = menuId;
		menuAntClass = $(menuId).className;
		swapClass($(menuId),'display');
	}
}

function showHideCatXecs(cat) {
	if($(cat).className == 'display')
		swapClass($(cat),'noDisplay');
	else
		swapClass($(cat),'display');
}

function selectDeselectXec(e, divXec) {
	if($(e).checked)
		swapClass($(divXec),'xecRegalSelected');
	else
		swapClass($(divXec),'xecRegal');
}

esRegaloBool = false;
function showRegalo(b) {
	jQuery('#tablaCompra').show('slow');
	if(b) {
		esRegaloBool = true;
		jQuery('#regaloH2').show('slow');
		jQuery('#noRegaloH2').hide('slow');
		jQuery('#regaloTR1').show('slow');
		jQuery('#regaloTR2').show('slow');
		jQuery('#regaloTR3').show('slow');
		jQuery('#regaloTR4').show('slow');
		
		jQuery('#esRegalo').val('true');
	} else {
		esRegaloBool = false;
		jQuery('#regaloH2').hide('slow');
		jQuery('#noRegaloH2').show('slow');
		jQuery('#regaloTR1').hide('slow');
		jQuery('#regaloTR2').hide('slow');
		jQuery('#regaloTR3').hide('slow');
		jQuery('#regaloTR4').hide('slow');
		
		jQuery('#esRegalo').val('false');
	}
}
