

$(function() {

	$('.map_cat_trigger').mouseenter(function () {
			$(this).addClass('over');
	});
	$('.map_cat_trigger').mouseleave(function () {
			$(this).removeClass('over');
	});



})
