$(document).ready(function(){
	
	return false;
	var menu_right_side = $('#mainmenu').width() + $('#mainmenu').position().left;
		
	$('#mainmenu li a').each(function(){
		var level = $(this).parents('ul').length - 1;
		var li_width = (level * 10) + $(this).width();
		if(li_width > 160){
			$(this).mouseenter(function(){
				var cont = $(this).clone();
				var top = $(this).offset().top - 7;
				var left = $(this).offset().left - 1;
				
				cont.addClass('mainmenu-overflow');
				cont.css({
					position: 'absolute',
					top: top + 'px',
					left: left + 'px',
					border: 'solid 1px #000',
					background: '#fff',
					padding: '0 3px'
				});
				
				if($(this).parents('ul').length > 1){
					cont.css({
						'font-size': '14px'
					});
				}
				
				$('body').append(cont);
				
				cont.mouseleave(function(){
					$(this).remove();
				})
			});
		}

	});
});
