$(function() {
   $('img').attr('alt', function() {
		return (this.alt ? this.alt : '');
	});
	$('img').attr('title', function() {
		return (this.title ? this.title : this.alt);
	});
});