jQuery(function($)
{
	$("img").each(function(i)
	{
		var t = $(this);
		var ta = t.attr("alt");
		if ((t.attr("title").length == 0) && (ta !=""))
		{
			t.attr("title", ta);
		}
	});
});

