	$(document).ready(function(){
		$('.menu li.menu-header').hover(
			function() {
				var offset = $(this).offset();
				$("ul", this).css("left", offset.left);
				$('ul', this).css('display', 'block'); 
			},
			function() { $('ul', this).css('display', 'none'); });
		$('.menu li.left-menu-top').hover(
			function() {
				var offset = $(this).offset();
				$("ul", this).css("top", offset.top);
				$('ul', this).css('display', 'block'); 
			},
			function() { $('ul', this).css('display', 'none'); });
	});
