$(document).ready(function() {

	// HOVER NAVIGATION
	$(".nav li").hover(function() {
		$(this).find("div").css("visibility","visible");
		$(this).find(".bg-nav-left").show();
		$(this).find(".bg-nav-right").show();
		if($(this).find("a").hasClass("tri")) {
			$(this).find(".bg-nav-left").css("background-image","url(images/nav-roundleft-dropdown.gif)");
			$(this).find(".bg-nav-right").css("background-image","url(images/nav-roundright-dropdown.gif)");
		}
		$(this).find(".submenu").stop(true, true).fadeIn(400);
		$(this).find(".main").css("backgroundColor","#074471");
		
	}, function() {

		$(this).find(".bg-nav-left").hide();
		$(this).find(".bg-nav-right").hide();
		$(this).find(".submenu").hide();
		$(this).find(".main").css("backgroundColor","transparent");
	});
	
	// HOVER NAVIGATION.ACTIVE
	$(".nav li.active").hover(function() {
		$(this).find("div").css("visibility","visible");
		$(this).find(".bg-nav-left").show();
		$(this).find(".bg-nav-right").show();
		$(this).find(".main").css("backgroundColor","#074471");
		if($(this).find("a").hasClass("tri")) {
			$(this).find(".bg-nav-left").css("background-image","url(images/nav-roundleft-dropdown.gif)");
			$(this).find(".bg-nav-right").css("background-image","url(images/nav-roundright-dropdown.gif)");
		}
		
	}, function() {
		$(this).find(".bg-nav-left").show();
		$(this).find(".bg-nav-right").show();
		$(this).find(".main").css("backgroundColor","#074471");
		if($(this).find("a").hasClass("tri")) {
			$(this).find(".bg-nav-left").css("background-image","url(images/nav-roundleft.gif)");
			$(this).find(".bg-nav-right").css("background-image","url(images/nav-roundright.gif)");
		}
	});
	
	// SUBMENU
	$(".submenu a").hover(function() {
		$(this).css({
			 color: '#FFF',
			 backgroundColor: '#00345B'
		});
	}, function() {
		$(this).css({
			 color: '#BEDEF3',
			 backgroundColor: '#074471'
		});
	});
	
	// FOKUS NAVIGATION ( KEYBOARD )
	$(".nav li a").focus(function() {
		$(this).parent().find("div").css("visibility","visible");
		$(this).parent().find(".bg-nav-left").show();
		$(this).parent().find(".bg-nav-right").show();
		if($(this).parent().find("a").hasClass("tri")) {
			$(this).parent().find(".bg-nav-left").css("background-image","url(images/nav-roundleft-dropdown.gif)");
			$(this).parent().find(".bg-nav-right").css("background-image","url(images/nav-roundright-dropdown.gif)");
		}
		$(this).parent().find(".submenu").stop(true, true).fadeIn(200);
		$(this).parent().next().find(".submenu").stop(true, true).fadeOut(200);
		$(this).parent().prev().find(".submenu").stop(true, true).fadeOut(200);
		$(this).css("backgroundColor","#074471");
	});
	
	$(".nav li a").blur(function() {
		$(this).parent().find(".bg-nav-left").hide();
		$(this).parent().find(".bg-nav-right").hide();
		$(this).css("backgroundColor","transparent");
	});

	// FOKUS NAVIGATION.ACTIVE ( KEYBOARD )
	$(".nav li.active a").focus(function() {
		$(this).parent().find("div").css("visibility","visible");
		$(this).parent().find(".bg-nav-left").show();
		$(this).parent().find(".bg-nav-right").show();
		if($(this).parent().find("a").hasClass("tri")) {
			$(this).parent().find(".bg-nav-left").css("background-image","url(images/nav-roundleft-dropdown.gif)");
			$(this).parent().find(".bg-nav-right").css("background-image","url(images/nav-roundright-dropdown.gif)");
		}
		$(this).parent().find(".submenu").stop(true, true).fadeIn(200);
		$(this).parent().next().find(".submenu").stop(true, true).fadeOut(200);
		$(this).parent().prev().find(".submenu").stop(true, true).fadeOut(200);
		$(this).css("backgroundColor","#074471");
	});
	
	$(".nav li.active a").blur(function() {
		$(this).parent().find(".bg-nav-left").show();
		$(this).parent().find(".bg-nav-right").show();
		$(this).css("backgroundColor","#074471");
		if($(this).parents().hasClass("active")) {
			$(this).parent().find(".bg-nav-left").css("background-image","url(images/nav-roundleft.gif)");
			$(this).parent().find(".bg-nav-right").css("background-image","url(images/nav-roundright.gif)");
		}
	});
	
	// SUBMENU
	$(".submenu a").focus(function() {
		$(this).parents().eq(3).find(".bg-nav-left").show();
		$(this).parents().eq(3).find(".bg-nav-right").show();
		if($(this).parents().eq(3).find("a").hasClass("tri")) {
			$(this).parents().eq(3).find(".bg-nav-left").css("background-image","url(images/nav-roundleft-dropdown.gif)");
			$(this).parents().eq(3).find(".bg-nav-right").css("background-image","url(images/nav-roundright-dropdown.gif)");
		}
		$(this).parents().eq(3).find(".tri").css("backgroundColor","#074471");
		$(this).css({
			 color: '#FFF',
			 backgroundColor: '#00345B'
		});
	});
	
	$(".submenu a").blur(function() {
		$(this).parents().eq(3).find(".bg-nav-left").hide();
		$(this).parents().eq(3).find(".bg-nav-right").hide();
		$(this).parents().eq(3).find(".tri").css("backgroundColor","transparent");
		if($(this).parents().eq(3).hasClass("active")) {
			$(this).parents().eq(3).find(".bg-nav-left").show();
			$(this).parents().eq(3).find(".bg-nav-right").show();
			$(this).parents().eq(3).find("a").css("backgroundColor","#074471");
			$(this).parents().eq(3).find(".bg-nav-left").css("background-image","url(images/nav-roundleft.gif)");
			$(this).parents().eq(3).find(".bg-nav-right").css("background-image","url(images/nav-roundright.gif)");
		}
		$(this).css({
			 color: '#BEDEF3',
			 backgroundColor: '#074471'
		});
	});		

});
