$(document).ready(
	function (){
		$('#menu-lateral-departamento a').click(
			function (){
				$('#menu-lateral-departamento ul').removeClass().addClass('m'+this.className);
				$('#tit-depa').text($(this).text());
				$.ajax({
					url:this.href,
					success:function (trans){

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