<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(function() {
$('#foo').hover(
function(){
$(this).text('Курсор на объекте')
},
function(){
$(this).text('Курсор вне объекта');
});
});
</script>
</head>
<body>
<div id="foo">Наведи мышку и получи фишку!</div>
</body>
</html>