$(document).ready(function() {
    $("#nav > li").hover(
 	   function() {
	        $("ul:first", this).show();
					$("ul:first > li:first > a", this).css({'margin-top' : '2px'});
					$(this).css({'background-color' : '#172b3b'});
					$("ul > li > a", this).css({'background-color' : '#172b3b', 'opacity' : '0.95', 'width' : '175px'});
	    },
	    function() {
	        $("ul:first", this).hide();
					$(this).css({'background-color' : 'transparent'});
	    }
    );

    $("#nav > li > ul > li").hover(
 	   function() {
	        $("ul:first", this).show();
					$("ul:first", this).css({'marginTop' : - $("a", this).height() - 6, 
																	'marginLeft' : $("a", this).width() + 34});
	    },
	    function() {
	        $("ul:first", this).hide();
	    }
    );

		$("#nav > li > ul > li > a").hover(
 	   function() {
	        $(this).css({'background-color' : '#172b3b', 'opacity' : '1'});
	    },
	    function() {
	        $(this).css({'background-color' : '#172b3b', 'opacity' : '0.95'});
	    }
    );

		$("#nav > li > ul > li > ul > li > a").hover(
 	   function() {
	        $(this).css({'background-color' : '#172b3b', 'opacity' : '1'});
	    },
	    function() {
	        $(this).css({'background-color' : '#172b3b', 'opacity' : '0.95'});
	    }
    );
});

					
