10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
|
jQuery(document).ready(function(){
|
||
|
jQuery("#nav li").hover(
|
||
|
function() {
|
||
|
jQuery(this).animate({"top": "-10px"}, 200);
|
||
|
},
|
||
|
function() {
|
||
|
jQuery(this).animate({"top": "0px"}, 200) ;
|
||
|
});
|
||
|
});
|