
function lowlightCategory(oCatAnchor, sContainerId)
{
	$(sContainerId).hide();
}

function highlightCategory(oCatAnchor, sContainerId)
{
	$(sContainerId).show();
}
/*
jQuery.ready(function () {
	
	$("#C_SPY_ProductListCategoriesDisplayView div").each(function () {
		
		$(this).bind("mouseenter", function (e) {
		
			$(this).show();
		});
	});

	$("#C_SPY_ProductListCategoriesDisplayView div[]").each(function () {
		
		$(this).bind("mouseleave", function (e) {
		
			$(this).hide();
		});
	});
	
});
*/
