jQuery(document).ready(function(){
 
	jQuery("li.cat-item a").each(function(){
		jQuery(this).removeAttr('title');
	})                

	jQuery("li.page_item a").each(function(){
		jQuery(this).removeAttr('title');
	})
 
});