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');
	})
	jQuery("li.related a").each(function(){
	    jQuery(this).removeAttr('title');
	})

	jQuery("img").each(function(){
	    jQuery(this).removeAttr('title');
	}) 

	jQuery("img.post-image").each(function(){
	    jQuery(this).removeAttr('alt');
	})
});
