// Powers active state for parent element of the drop down nav	$(document).ready(function(){			$("ul.dropped").hover(function(){			$(this).parent().addClass('hover'); // This makes the parent drop down element stay highlighted while dropdown nav is open		},function(){	   		$(this).parent().removeClass('hover'); // This makes the parent drop down element remove the highlight when dropdown is not open		});	});
