Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 6th, 2012  |  syntax: None  |  size: 0.31 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <script type='text/javascript'>
  2.   //<![CDATA[
  3.   $(function(){
  4.   $("ul#menu li").hover(function() {
  5.     $(this).find('a').stop().animate({
  6.         paddingLeft: "20px"
  7.     }, 550);
  8. }, function() {
  9.     $(this).find('a').stop().animate({
  10.         paddingLeft: "0px"
  11.     }, 550);
  12. });
  13.   });
  14.   //]]>
  15.   </script>