$(function(){
	$(".dropDown").hide();
	$(".dropDown").parent().hover(
	function(){
	$(this).children("a").css("backgroundColor", "#fdae50"); 
	$(this).find(".dropDown").show();
	}, 
	function(){
	$(this).children("a").css("backgroundColor", "transparent"); 
	$(this).find(".dropDown").hide();
	});
});
