(function ($) { $(document).ready(function() { $("#nice-menu-2 .menuparent").bind('mouseover',function(){ if (($(this).offset().left+$(this).outerWidth()+$(this).children("ul:first").outerWidth()) > $("body").outerWidth()) { $(this).children("ul:first").css({left:'-'+$(this).outerWidth()+'px'}); } else { $(this).children("ul:first").css({left:$(this).outerWidth()+'px'}); } }); }); })(jQuery);