/* GZIP by Raccoon Framework */ $.fn.rcn_jmenu = function() { return this.each(function() { var $this = $(this); $($this).hover(function() { $("div:first", $this).show(); }, function() { $("div:visible", $this).slideUp(); }); }); }; $(function() { $("div.rcn_jmenu > span").rcn_jmenu(); })