document.observe( 'dom:loaded', function() {
	$$('a').each( function( a ) {
		if( a.hasClassName( 'project_link' ) ) {
			return false;
		}
		a.removeAttribute('title');
	} );
	$$('img').each( function( img ) {
		img.removeAttribute('alt');
		img.removeAttribute('title');
	});
});

