

$(document).ready(function(){

	$(".nav a").hover(
		function(){
			$(this).next().css("display", "block");
			
			if($(this).attr('rel')=="niv1"){
				$(this).addClass('on');
			}else if($(this).attr('rel')=="niv2"){
				$(this).parent().parent().prev().addClass('on');
			}else{
				$(this).parent().parent().prev().addClass('on');
				$(this).parent().parent().parent().parent().prev().addClass('on');
			}
			//alert('HOVER MODE');
		},
		function(){
			$(this).next().css("display", "none");
			$(".nav a").removeClass('on');
			
			//alert('OUT MODE');
		}
	);
	
	
	$(".nav ul li ul").hover(
		function(){
			$(this).css("display", "block");
			//alert('HOVER MODE');
		},
		function(){
			$(this).css("display", "none");
			//alert('OUT MODE');
		}
	);


});
