Nested menu bar display

I have a problem with a nested menu bar. How do I make it always appear on-screen when the browser is started or resized?\[code\]$('.item').mouseover(function(){ var ul=$(this).children('ul'); ul.css("visibility","visible"); var heigh=$(window).height()-ul.offset().top; if(heigh < 600){ ul.offset({ top: heigh-500}); } });\[/code\]
 
Back
Top