<script> $(document).ready(function() { $("#text").mouseenter(function(){ $(".window").stop().show(400); }).mouseleave(function(){ $(".window").stop().hide(400); }) }); </script>