$(document).ready(function() {
    $('li.cat-item').hover(
    	function(){
    		$(this).addClass('hover');
    		$(this).children().addClass('hover');
    	},function() {
    		$(this).removeClass('hover');
    		$(this).children().removeClass('hover');
    	}
    );
    
    $('li.cat-item').click(function(){
    	var tag = $(this).children()[0];
    	var url = $(tag).attr('href');
    	location.href = url;
    });
});