<!--

$(document).ready(function(){
	// almenük
	var animationsShow, animationsHide;
	if (jQuery.support.opacity){
		animationsShow = {width: "200px", opacity: 1.0};
		animationsHide = {width: "0px", opacity: 0.0};
		$(".hovermenu").css({opacity: 0.0});
	}
	else{
		animationsShow = {width: "200px"};
		animationsHide = {width: "0px"};
	}
	$(".subnav").hover(function(){
		$(this).find(".arrow").addClass("arrowhover");
		$(this).find(".hovermenu").animate(animationsShow, {
			duration: 500,
			queue: false
		});
	},function(){
		$(this).find(".arrow").removeClass("arrowhover");
		$(this).find(".hovermenu").animate(animationsHide, {
			duration: 500,
			queue: false
		});
	});
	// menü linkjei
//	$("div.subnav:not([title])").click(function(){
//		var link = $(this).find(".subsubnav").first().attr("href");
//		window.location.href = link;
//	});
});

//-->

