And the next time you're in California, be sure to try some of our fresh olives, right off the tree. It's a taste you'll never forget!
> From: Gordon > > Try dropping this amazing new script onto a page with > hyperlinks, your users will never forget the experience. > (requires jQuery 1.2) > > <script type="text/javascript" src="/js/jquery/jquery.js"></script> > <script type="text/javascript"> > $(document).ready (function () > { > var thisWidth = $(window).width (); > var thisHeight = $(window).height (); > $('a').mouseover (function () > { > var thisLink = $(this); > thisLink.css ({position: 'absolute'}).animate ({ > top : Math.round > ((Math.random () * (thisHeight - thisLink.height > ()))), > left : Math.round ((Math.random () * > (thisWidth - thisLink.width > ()))) > }, 'fast'); > }); > }); > </script>