$(document).ready(function () {
	$("ul").hover(
		function () {
			$(this).find("> ul").show(0);
		},
		function () {
			$(this).find("> ul").hide(0);
		}
	);
	$(".horne_menu ul ul a.active").parent().parent().parent().css("background", "black");
});
