
$(document).ready(function() {
  var tmpTitleAttr;
	
	$(".nice-menu a").hover(
		function () {
			tmpTitleAttr = $(this).attr('title');
			$(this).attr('title', "");
		},
		function () {
		  $(this).attr('title', tmpTitleAttr);
		}
	);
	
	$('.nice-menu a').focus(function() {
		$(this).attr('title', tmpTitleAttr);
	});
	
});

