$(document).ready(function(){ $('.topMenu>li').hover(function(){ $(this).children('ul').show(); },function(){ $(this).children('ul').hide(); }) $('.about').cycle({ fx: "fade" }) });