
$(document).ready(function(){
	$('.topblock .top').hover(
		function() {
			$(this).find('a:first').addClass('act');
			$(this).find('.menu').show();
		},
		function() {
			$(this).find('a:first').removeClass('act');
			$(this).find('.menu').hide();
		}
	);
});

$(document).ready(function(){
	$('.topblock .sq2').toggle(
		function() {
			$(this).next('.submenu').show();
		},
		function() {
			$(this).next('.submenu').hide();
		}
	);
});





/*$(document).ready(function(){
	$('.menu .item').hover(
		function() {
			$(this).find('.main-link').addClass("actlink");
			$(this).find('.sub-cont').css({visibility: "visible",display: "none"}).slideDown(400);
		},
		function() {
			$(this).find('.sub-cont').css({visibility: "hidden"});
			$(this).find('.main-link').removeClass("actlink");
		}
	);
});
*/
/*
$(" #nav li").hover(
	function() {
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
	},
	function() {
		$(this).find('ul:first').css({visibility: "hidden"});
	});
}
*/
