$(document).ready(function(){
	$("a.dropdown").click(function(){
		$(this).toggleClass("active");
		$("div#dropdowncontent").toggle();
			$("div#dropdowncontent").mouseleave(function(){
				$(this).hide();
				$("a.dropdown").removeClass("active");
				});
	});
});
