$(document).ready(function() {
	
	$(".category.inactive")
		.livequery(function(){ 
			$(this) 
				.hover(function() { 
					var imagePath = "/_img/"+$(this).attr('id')+"_h.png";
					
					$(this).attr('src', imagePath);
				}, function() { 
					var imagePath = "/_img/"+$(this).attr('id')+"_l.png";
					
					$(this).attr('src', imagePath);
				}); 
		}, function() { 
			$(this) 
				.unbind('mouseover') 
				.unbind('mouseout'); 
	});
	
	$(".inactive")
	.livequery(function(){ 
		$(this) 
			.hover(function() { 
				$(this).addClass('active');
			}, function() { 
				$(this).removeClass('active');
			}); 
	}, function() { 
		$(this) 
			.unbind('mouseover') 
			.unbind('mouseout'); 
	})

	
});
