$(document).ready(function() {
	$(".header ul li ul").hide();
	$(".header ul li a").each(function() {
		if (location.href.match($(this).attr("href"))) {
			$(this).addClass("current");
		}
	});
	$(".header ul li:has(ul)>a").each(function() {
		if (location.href.match($(this).attr("href"))) {
			$(this).parents("li").children("ul").show();
		}
	});
	$(".header ul li:has(ul)>a").attr("href", "#");
	$(".header ul li a").click(function() {
		$(this).parent("li").siblings("li").children("ul").slideUp();
		$(this).parent("li").children("ul").stop().slideDown();
	});
});
