$(function() {
    $('.widget_categories li').mouseover(function() {
        $(this).addClass("active")
	});
	$('.widget_categories li').mouseout(function() {
		$(this).removeClass("active")
	});
});




