Verdiğin kodu aşağıdaki gibi uyguladım fakat çalışmıyor.

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
$(document).ready(function (){
$("a").each(function(e) {
var title = $(this).attr('title');
$(this).mouseover(
function() {
$(this).attr('title','');
}).mouseout(
function() {
$(this).attr('title', title);
});
});

});
</script>	
</head>
<body>

<a href="http://www.taslar.net" title="Doğal Taşlar">Doğal Taşlar</a>

</body>
</html>