$(document).ready(function() {
	$("#nav ul li ul").each(function() {
		if($(this).offset().top + $(this).height() > 580) {
			//$(this).css({"margin-top":-$(this).offset().top});
			//remove any dropdowns that are too tall to fit on the page
			$(this).remove();
		}
	});
});

