$(document).ready(function(){
	$('img').each(function(){
		if(this.alt.length > 0 && this.title.length == 0)
			this.title = this.alt;
	});
});
