$(document).ready(function(){

	$("#nav > li").hover(function(){
		$(this).children("a").css({"color": "#ECAD30"});
		$(this).children("ul").show(200);
	}, function(){
		$(this).children("a").css({"color": "#808a8e"});
		$(this).children("ul").hide();
	})
	
	$("#nav li li").hover(function(){
		$(this).children("a").css({"background-color": "black", "color": "#ECAD30"});
		$(this).children("ul").show();
	}, function(){
		$(this).children("a").css({"background-color": "transparent", "color": "white"});
		$(this).children("ul").hide();
	})
});
