$(document).ready(function(){

$('#nuevo_mensaje.logeado').toggle(
	function() {
		$('#nmensaje_foro').removeClass("accesibilidad");
		$('#titulo').get(0).focus();
		return false;
	}, 
	function() {
		$('#nmensaje_foro').addClass("accesibilidad");
		return false;
	}
);

$('#foro_lista li').hover(
	function(){
		$(this).css("background", "#efefef");
	}, 
	function(){
		$(this).css("background", "#fefefe");
	}
);

});

