<link href="css/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript">

 $(document).ready(function() {

 $("#menu-jq2 li").prepend("<SPAN></SPAN>");
 $("#menu-jq2 li").each(function() {
 var linkText = $(this).find("a").html();
 $(this).find("span").show().html(linkText);
 });

 $("#menu-jq2 li").hover(function() {
 $(this).find("span").stop().animate({
 marginTop: "-32"
 }, 500); 
 } , function() {
 $(this).find("span").stop().animate({
 marginTop: "0"
 }, 500);
 });
 });
</script>
