$(function() {
	$("#nav li.level_1").hover(function() {
			var active_link = $(this).attr('class').split(' ').slice(0, 1);
			var theactive = "#nav li." + active_link + " a";
			var dropdown = "#nav li." + active_link + " ul";
			$(theactive).addClass("active");
			$(dropdown).show();
		}, function() {
			var active_link = $(this).attr('class').split(' ').slice(0, 1);
			var theactive = "#nav li." + active_link + " a";
			var dropdown = "#nav li." + active_link + " ul";
			$(theactive).removeClass("active");
			$(dropdown).hide();	
	});
	$("#filter").hover(function() {
				$("#cat-picker").show();
			}, function() {
				$("#cat-picker").delay(200).hide(1);	
	});
	$(".accordion").accordion({
		active: false,
		collapsible: true,
		autoHeight: false,
		header: 'h2'
	});
});