function to_bottom() { var x = document.body.scrollLeft; var y = document.body.scrollTop; var speed = 8; // 높을수록 빨라짐. while ((x != 0) || (y != 950)) { scroll (x, y); x -= speed; y += speed; if (x < 0) x = 0; if (y > 950) y = 950; } scroll (0, 950); } $(document).ready(function(){ $(".topnav").hover(function() { $(this).parent().find(".subnav").slideDown('normal').show(); $(this).parent().hover(function() { }, function(){ $(this).parent().find(".subnav").slideUp('fast'); }); }); }); ;