$(document).ready(function() {
	$("#ambitIndex li a").click(function() {
		var identifier = $(this).attr("href");
		if (identifier != '' && identifier!='#') {
			$("#ambitIndex li a").removeClass("ambits_sel");
			$(this).addClass("ambits_sel");
			identifier = identifier.substring(identifier.lastIndexOf("#"), identifier.length);
			$(".cero").hide();
			$(identifier).animate({opacity: 'toggle', height: 'toggle'});
		}
		return false;
	});
	$(".cero").hide();
	$("#ref-auditoria").show();
});

function showGallery() {
	$("#gal-first").click();
}
