jQuery(document).ready(function() {
	jQuery('.cat-item').mouseenter(function(){
		jQuery('a', this).eq(0).css({
		  color:'#ddd',
		  background: "#1b1b1b"
		});
	});
	jQuery('.cat-item').mouseleave(function(){
	  jQuery('a', this).eq(0).css({
		color:'#ddd',
		background: "transparent"
	  });
	});
});
