$("document").ready(function(){
	showChildren();
});
function showChildren(){
	$('.parent-drop-down dd').hide();
	$('.parent-drop-down').mouseenter(function(){
		$(this).children('dt').addClass('activeHover');
		$(this).children('dt').children('a').css("border", "2px solid #977e3f");
		$(this).children('dd').show();
	});
	
	$('.parent-drop-down').mouseleave(function(){
		$(this).children('dt').removeClass('activeHover');
		$(this).children('dt').children('a').css("border", "2px solid #0b2e03");
		$(this).children('dd').hide();
	});	
}
