$(document).ready(function () {
	$("#shopnav	img").hover(shopnavOver, shopnavOut);
});

function shopnavOver() {
	var imgSRC = $(this).attr("src");
	imgSRC = imgSRC.replace(".gif", "_on.gif");
	$(this).attr("src", imgSRC);
}

function shopnavOut() {
	var imgSRC = $(this).attr("src");
	imgSRC = imgSRC.replace("_on.gif", ".gif");
	$(this).attr("src", imgSRC);
}

function toggleViewAllBrands() {
	var elems = $("#cat_brandicons li.hidden");
	if (elems.css("display") == "none") {
		$("#viewAllBrandLabel").html("HIDE BRANDS");
		elems.show();
	}
	else {
		$("#viewAllBrandLabel").html("VIEW ALL BRANDS");
		elems.hide();
	}
}