$(document).ready(function(){
	$(".navmenu-v li").hover(
		function() { $(this).addClass("iehover"); },
		function() { $(this).removeClass("iehover"); }
	);
	
	setLev3();
});

function setLev3() {
	$("li.folded a").hover(function() {
			
			//alert("trobat li.folded a");
			
			var minLeft = $(this).width();
			
			var adjObj = $(this).next("ul.lev3");
			
			adjObj.css("left", minLeft + 40);

	});
}
