$(document).ready(
	function (){
		$('#menu-lateral-profesores a').click(
			function (){
					$.ajax({
					url:this.href,
					dataType:'json',
					success:function (trans){

						$('#prof-nombre').html(trans.nombre);
						$('#prof-detalle').html(trans.descrip);
					},
					beforeSend:function (){
						$('#prof-nombre').html('<img src="imgs/ajax.gif" alt="" />');
						$('#prof-detalle').html('');
					}
				});
				this.blur();
				return(false);
			}
		);
	}
);