$(document).ready(function() {
	// выпадающее меню контактов
	$('#id_contact').hover(
		function() {
			$(this).children('#s_contact').show();
		},
		function () {
			$(this).children('#s_contact').hide();
	}); // end hover

	// выпадающее меню компании
	$('#id_company').hover(
		function() {
			$(this).children('#s_company').show();
		},
		function () {
			$(this).children('#s_company').hide();
	}); // end hover

	// выпадающее меню продуктов
	$('#id_product').hover(
		function() {
			$(this).children('#s_product').show();
		},
		function () {
			$(this).children('#s_product').hide();
	}); // end hover

	// выпадающее меню систем
	$('#id_sistem').hover(
		function() {
			$(this).children('#s_sistem').show();
		},
		function () {
			$(this).children('#s_sistem').hide();
	}); // end hover

	// выпадающее меню использования
	$('#id_use').hover(
		function() {
			$(this).children('#s_use').show();
		},
		function () {
			$(this).children('#s_use').hide();
	}); // end hover


});
