<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
<a href="#">a</a>
<script type="text/javascript">
$('a[href="#"]').bind({
mouseover: function(){
$(this).attr('rel', $(this).attr('href'));
if($(this).attr('href') == $(this).attr('rel')){
$(this).attr('href', 'изменили href');
}
$(this).text($(this).attr('href'));
},
mouseout: function(){
if($(this).attr('href') == 'изменили href'){
$(this).attr('href', $(this).attr('rel'));
}
$(this).text($(this).attr('href'));
}
});
</script>