$(document).ready(function() {
$('#dropdown li a.headlink').hover(
			function() {
			$(this).addClass("Acctive");
			$(this).parents("li").children("ul").show();
			},
			function() {
			$(this).removeClass("Acctive");
			$(this).parents("li").children("ul").hide();
			 });
				
				$('#dropdown li ul').hover(
			function() {
			$(this).parents("li").children("a").addClass("Acctive");
			$(this).show();
			},
			function() {
			$(this).parents("li").children("a").removeClass("Acctive");
			$(this).hide();
			 });

});

