$(document).ready(function() {
	$("span[class=hintword]").tooltip({position: "bottom right"});
	$("img:not([title])").each(function() {
		if($(this).attr("alt") != '') $(this).attr("title", $(this).attr("alt"));
    });
});

