$(document).ready(function() { if ($("#leftSubNavigation ul").children().length != 0) { $("#leftSubNavigation").show(); } $('#mainNavigation ul.main li').not('#mainNavigation ul.main li li').each(function() { //Container width 1000 pos = $(this).position(); //alert(pos.left); menuOverflow = (pos.left + 200) - 1000; if (menuOverflow > 0) { $(this).find('ul').css('left', (menuOverflow * (-1) - 10) + 'px'); //800px + 200px menu width = align to right } }) $('#mainNavigation ul.main li').not('#mainNavigation ul.main ul li').hover( function() { $(this).find('ul').stop(true, true).show(); }, function() { $(this).find('ul').stop(true, true).hide(); } ); $('#mainNavigation ul.main ul li').hover( function() { $(this).css('background', '#B1C6E1'); }, function() { $(this).css('background', '#DEE7F2'); } ); })