// highlight out of stock items
$(".availability ul").each(function() {
	var elem = $(this);
	if (elem.children().length == 0) {
			$(this).parent().next(".out").removeClass("hidden");
		$(this).parent("div").parent().parent().children(".item-image").children("a").children("span").removeClass("hidden");
			$(this).parent("div").remove();
    	}
	}
);