function linker(){
	hoverShowHide("#a1", "#l1", 0);
	hoverShowHide("#a2", "#l2", 0);
	hoverShowHide("#a3", "#l3", 0);
	hoverShowHide("#a4", "#l4", 0);
	hoverShowHide("#a5", "#l5", 0);
	hoverShowHide("#a6", "#l6", 0);
	
//	$("#a_main").click(
//		function(){
//			$(".news h2").text("Новости")
//			$("#p_prices").fadeOut("slow", function(){
//				$("#p_contacts").fadeOut("slow", function(){
//					$("#p_part").fadeOut("slow", function(){
//						$("#p_main").fadeIn("slow")
//					})
//				});	
//			})
//		});
//	
//	$("#a_par").click(
//		function(){
//			$(".news h2").text("Партнеры")
//			$("#p_prices").fadeOut("slow", function(){
//				$("#p_contacts").fadeOut("slow", function(){
//					$("#p_main").fadeOut("slow", function(){
//						$("#p_part").fadeIn("slow")
//					})
//				});	
//			})
//		});
//	$("#a_contacts").click(
//		function(){
//			$(".news h2").text("Контакты")
//			$("#p_prices").fadeOut("slow", function(){
//				$("#p_main").fadeOut("slow", function(){
//					$("#p_part").fadeOut("slow", function(){
//						$("#p_contacts").fadeIn("slow")
//					})
//				});	
//			})
//			
//		});
//	$("#a_prices").click(
//		function(){
//			$(".news h2").text("Прайсы")
//			$("#p_main").fadeOut("slow", function(){
//				$("#p_part").fadeOut("slow", function(){
//					$("#p_contacts").fadeOut("slow", function(){
//						$("#p_prices").fadeIn("slow")
//					})
//				})
//			});
//		});
}

function hoverShowHide(WhatHover, WhatShowHide, Speed){
	$(WhatHover).hover(
	function(){
		$(WhatShowHide).show(Speed);
	}, 
	function(){
		$(WhatShowHide).hide(Speed);
	});
}
