function showInfo(index) {
	$("#ViewListInfoContainer-"+index).slideDown(); 
	$("#showButton-"+index).hide();	
	$("#hideButton-"+index).show();		
}


function hideInfo(index) {
	$("#ViewListInfoContainer-"+index).slideUp(); 
	$("#hideButton-"+index).hide();	
	$("#showButton-"+index).show();
}

function toggleInfo(index) {
	if ($("#ViewListInfoContainer-"+index).is(":hidden")) { showInfo(index); }
	else { hideInfo(index); }
}

/* para mostrar/ocultar el formulario de contacto de la cabecera */
function toggleContact() {
	$("#contact-container").slideToggle();
	$(".contact-tab a").toggleClass("expand");
}


