
$(document).ready(function() {
	
	$("map area").click(function(){
		$("#info div").hide();
		$("#" + $(this).attr("href").substring(1, $(this).attr("href").length)).show();
		showPopup();
		return false;
	});
	
	$("a[href='#seleccionformacion']").click(function(){
		$("#section-menu a[href='#progresion']").click();
		return false;
	});
	
	
	$("#popup").hide();
});
