$(document).ready(function() { 			    	
			    	$('LI.fo-menu').mouseover(function() {
			    		var idnevf=$(this).attr("id");				    		
		        		$('.al-menu').each(function(){
		        			var idnev=$(this).attr("id");	
		        			if (idnev.substring(0,2)!=idnevf) {
								$(this).hide();
		        			}
			        	});
			    	});
			    	
			    	$('DIV.al-menu').bind("mouseleave",function() {
		        		$('.al-menu').each(function(){
							$(this).hide();
			        	});
			        })
			    	
			        $('LI.almenu').bind("mouseenter",function(e) {			        	
			        	var idnev=$(this).attr("id");	
			        	$("#"+idnev+"-div").show();
			        })
			    });  //ready
