$(document).ready(function() {
	$('li#categories-3 li, li#archives-3 li').click(function() {
		window.location = $(this).children('a').attr('href');
	});

	$('li#categories-3 li, li#archives-3 li').mouseenter(function() {
		$(this).children('a').addClass('active');
	});
	
	$('li#categories-3 li, li#archives-3 li').mouseleave(function() {
		$(this).children('a').removeClass('active');
	});
});
