$(function(){
	$("table#menuleft a")		   .each(function(){
		$(this).click(function(){
		var enlace=$(this).attr("href")
		$("#tpresentacion").empty().hide();
		$("#contenido").hide().fadeIn("slow").load(enlace);
		return false;
	
							   
		});
												  
	});


	$("#especialidades").change(function(){
		var espe=$(this).val();

		
		switch(espe){
			case 'M3':
			enlace="m3.html";
			break;

			case 'M4':
			enlace="m4.html";
			break;

			case 'M5':
			enlace="m5.html";
			break;

			case 'M6':
			enlace="m6.html";
			break;

		}
		$("#tpresentacion").empty().hide();
		$("#contenido").hide().fadeIn("slow").load(enlace);
		return false;
		

		


	});


	
		   
})


