$(document).ready(function (){
	$('img[alt]').each(function(){ 
		try
		{
			$(this).attr('title', this.alt);
		}
		catch(err)
		{
			// eat it -- this is a convenience, not a necessity
		}
	});
})
