$(document).ready(function() {
	
	$("a").each(function() {
		if( $(this).attr('rel')	== "external" )	
		{
			$(this).attr('target', '_blank');
		}
		
		$(this).removeAttr('title');
	});
	
	
	$("img").each(function() {
		$(this).removeAttr('title');
		$(this).removeAttr('alt');
	});
	
});
