В общем сделал вот так:
<html>
<head><script src="http://code.jquery.com/jquery-1.6.4.min.js"></script></head>
<body>
<div class="menu">
<a href="/menu.php?one">одын</a>
<a href="/menu.php?two">два</a>
<a href="/menu.php?tree">тры</a>
</div>
<div id="content"></div>
<script>
$('.menu').click(function (e) {
$.ajax({
type: "POST",
url: "greetings.php",
data: "username="+e.target.href,
success: function(html){
$("#content").html(html);
}
});
return false;
})
</script>
</body>
</html>
Gozar, спасибо большое!